vote up 0 vote down star

Hi,

Has any body tried creating Raw socket in android and have succeeded. Please let me know.

regards Harish

flag

2 Answers

vote up 0 vote down

I havent actually created any raw sockets in Android but the java.net and javax.net packages shold do what you need,

java.net package overview

javax.net package overview

link|flag
vote up 0 vote down

So far as I'm aware access to raw sockets is not availables in any pure Java library.

In part this is because on most O/S access to raw sockets is a privileged operation, only available to processes running as root / administrator.

The Socket and DatagramSocket classes available in the java.net package are implicitly IP sockets (for TCP, and UDP, respectively).

See for more detail http://lists.apple.com/archives/Java-dev/2004/Jul/msg00086.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.