Tagged Questions
The raw-socket tag has no wiki summary.
2
votes
2answers
3k views
create Raw socket in Android
Has any body tried creating Raw socket in android and have succeeded. Please let me know.
regards
Harish
1
vote
1answer
2k views
raw socket sendto failed using C on Linux
I'm trying to send a raw packet using UDP, with the IP and UDP headers that I have constructed in my code. Raw packet successfully initialized with socket(PF_INET, SOCK_RAW, IPPROTO_UDP) and socket ...
1
vote
1answer
895 views
Is raw socket on loopback interface possible?
We are trying to communicate with the server listening on Linux loopback interface via raw socket and it seems like the server does not get a single packet from us. The packets we send are visible in ...
0
votes
2answers
931 views
Raw socket NOT sending
I am trying to write a sample Raw socket program to clear my understanding of raw sockets. I create a Raw UDP socket and then call sendto. My sendto succeeds but I never see the packet received by the ...