What are raw sockets?

Answers were Sorted based on User's Feedback



What are raw sockets?..

Answer / william

A raw socket is a socket that allows access to packet
headers on incoming and outgoing packets. Raw sockets
always receive the packets with the packet header included
as opposed to non-raw sockets which strip the header and
only receive the packet payload.

Is This Answer Correct ?    30 Yes 1 No

What are raw sockets?..

Answer / leossk

SOCK_RAW , ping uses raw sockets for ICMP

Is This Answer Correct ?    13 Yes 7 No

What are raw sockets?..

Answer / atul sharma

Raw Sockets are independent of the transport layer and the
packet are being routed based on the destination IP
address.As this does not contain the Port related
information So on the destination machine any socket
listening can receive the IP or RAW packets.This has been
practically verified by Me.

Is This Answer Correct ?    5 Yes 6 No

What are raw sockets?..

Answer / saravanan.s

allows only header include pockets.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Unix Socket Programming Interview Questions

Can multiple sockets use the same port?

0 Answers  


How can I read only one character at a time?

1 Answers  


Is a socket a file?

0 Answers  


system choose one for me on the connect() call? Should I bind() a port number in my client program, or let the?

0 Answers  


What is the difference between SO_REUSEADDR and SO_REUSEPORT?

0 Answers  






How do I send [this] over a socket?

1 Answers  


What exactly does SO_LINGER do?

1 Answers  


What is a deep well socket?

0 Answers  


Is socket a hardware or software?

0 Answers  


Is tcp or unix socket faster?

0 Answers  


What are raw sockets?

4 Answers   Axis Technologies,


How would I put my socket in non-blocking mode?

1 Answers  


Categories