jianlinwei / droidwall

Automatically exported from code.google.com/p/droidwall
0 stars 0 forks source link

Don't work an Acer Iconia Tab #203

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Droidwall don't work on Acer Iconia Tab A501 (only wifi part works)
Reason is that our 3g interface is called not rmnet0, but usb1.

Modifying line 184 in src/ com/ googlecode/ droidwall/ Api.java
from
 final String ITFS_3G[] = {"rmnet+","pdp+","ppp+","uwbr+","wimax+","vsnet+","ccmni+"};

to 
 final String ITFS_3G[] = {"rmnet+","pdp+","ppp+","uwbr+","wimax+","vsnet+","ccmni+", "usb+"};

fixes the problem..

As a side effect, it could allow droidwall work with different usb-3g modems..

Original issue reported on code.google.com by daemongl...@gmail.com on 13 Nov 2011 at 9:13

GoogleCodeExporter commented 9 years ago
Added on r237 - will be on DroidWall 1.5.5
Thanks

Original comment by rodrigo...@gmail.com on 25 Nov 2011 at 3:57