How to gain greater control of network packets on Android

Posted by mauvehead on Stack Overflow See other posts from Stack Overflow or by mauvehead
Published on 2010-03-16T16:33:57Z Indexed on 2010/03/16 16:41 UTC
Read the original article Hit count: 285

I'm looking to design an application that will require some deep control over IP packets. Looking over the reference guide on the developers site at Android I see very limited control over packets from java.net:SocketOptions and java.net:DatagramPacket. Specifically I'm looking to control the individual bits within the packet to set TCP Flags, SYN/ACK/RST, and so forth. Based on the docs I am assuming I cannot do this within the Java API provided by Android and I'm guessing I'll have to do it some other way?

Anyone have any insight on this?

© Stack Overflow or respective owner

Related posts about android

Related posts about network-programming