編輯:關於android開發
有兩種方式可以解決該問題:1)升級大於等於3.13的內核 2)關閉虛擬機網卡的ufo特性
- diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
- index dd637fc..05686c4 100644
- --- a/net/ipv4/ip_output.c
- +++ b/net/ipv4/ip_output.c
- @@ -843,7 +843,8 @@ static int __ip_append_data(struct sock *sk,
- cork->length += length;
- if (((length > mtu) || (skb && skb_is_gso(skb))) &&
- (sk->sk_protocol == IPPROTO_UDP) &&
- - (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len) {
- + (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len &&
- + (sk->sk_type == SOCK_DGRAM)) {
- err = ip_ufo_append_data(sk, queue, getfrag, from, length,
- hh_len, fragheaderlen, transhdrlen,
- maxfraglen, flags);
- diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
- index 12f7ef0..d7907ec 100644
- --- a/net/ipv6/ip6_output.c
- +++ b/net/ipv6/ip6_output.c
- @@ -1294,7 +1294,8 @@ emsgsize:
- if (((length > mtu) ||
- (skb && skb_is_gso(skb))) &&
- (sk->sk_protocol == IPPROTO_UDP) &&
- - (rt->dst.dev->features & NETIF_F_UFO)) {
- + (rt->dst.dev->features & NETIF_F_UFO) &&
- + (sk->sk_type == SOCK_DGRAM)) {
- err = ip6_ufo_append_data(sk, getfrag, from, length,
- hh_len, fragheaderlen,
- transhdrlen, mtu, flags, rt);
獲取手機屏幕密度。,獲取屏幕密度 1 package com.km.screeninfo; 2 3 import android.os.Bundle; 4
Android應用開發編譯框架流程與IDE及Gradle概要 1 背景 建議閱讀本文之前先閱讀《Android Studio入門到精通》和《Groovy腳本基礎全攻略》及
我的Android進階之旅------Android 5.0中出現警告的解決方法: Service Intent must be explicit: 1.錯誤描述 今
Android框架設計模式(五)——Singleton Method 一、單例模式介紹 什麼是單例模式 單例模式就是在整個全局中(無論是單線程還是多線程),該對象只存在