完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
|
|
相关推荐
1个回答
|
|
之所以4G无法上网的根本原因是4G的ppp拨号没有设置指定路由导致的,只需在rk3188_5.1_midframeworksbaseservicescorejavacomandroidserverConnectivityService.java加入指定路由即可从根本上解决问题
添加4G路由: for (RouteInfo route : routeDiff.added) { if (route.hasGateway() == false) continue; if (DBG) log("Adding Route [" + route + "] to network " + netId); try { /**add by shihao for 4G start*/ if (route.getInterface().equals("ppp0")) { RouteInfo xroute = RouteInfo.makeHostRoute(route.getGateway(), route.getInterface()); // make host route for nexthop mNetd.addRoute(netId, xroute); //add nexthop(getGateway()) for table ppp0 if (DBG) log("Adding Route [" + xroute + "] to network " + netId); } /**add by shihao for 4G end*/ mNetd.addRoute(netId, route); } catch (Exception e) { if ((route.getGateway() instanceof Inet4Address) || VDBG) { loge("Exception in addRoute for gateway: " + e); } } } |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
基于米尔瑞芯微RK3576核心板/开发板的人脸疲劳检测应用方案
808 浏览 0 评论
1024 浏览 1 评论
887 浏览 1 评论
2113 浏览 1 评论
3373 浏览 1 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-26 00:48 , Processed in 0.628455 second(s), Total 71, Slave 55 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号