What are raw sockets, where they are efficient?
Answers were Sorted based on User's Feedback
Answer / achal ubbott
Raw sockets are useful when you want to inject or capture
almost anything(without IP or TCP/UDP headers and the CRC)
on to the ethernet. They operate in Data Link Layer of
TCP/IP model.
Unix/Linux have been supporting them since ages. But
Windows have recentlly stopped their support, because of
security hazards. On windows OS you would have to use
Winpcap network driver library to play with these
sockets.It bypasses the OS's network stack.
cheers
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / manjunath gn
Raw sockets are the sockets created at Data link layer.
They are useful in layer 2 communication
| Is This Answer Correct ? | 3 Yes | 1 No |
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
Show the declaration for a pointer to function returning long and taking an integer parameter.
Differentiate between a copy constructor and an overloaded assignment operator.
Find the second maximum in an array?
How to reduce a final size of executable?
What is exception handling? Does c++ support exception handling?
What are the benefits of oop in c++?
What do you mean by late binding?
What does it mean to declare a destructor as static?
What is the type of 'this' pointer?
Differentiate between C and C++.
What are the differences between the function prototype and the function defi-nition?