Tagged Questions

1
vote
0answers
29 views

Bluetooth connectivity and protocols that need to be programmed/implemented

I need an Adhoc network to connect devices via BLUETOOTH , for larger distances ( not just 10m but something more ) .. Assuming I achieve this, What protocols beneath application layer SHould I have ...
0
votes
3answers
159 views

OSI Layer 2 Network Programming

I've recently taken some classes in networking (CCNA 1 through 4), so I understand most of the theory behind it all. What I'd like to do now is take that knowledge I have and put it into practice in ...
0
votes
2answers
621 views

Accessing data link layer packets

I want to create a socket for accessing IPv4 packets from data link layer. From unix network programming V1, socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP)) 1)I am implementing a dhcp client, is ...