linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Raw Sockets
@ 2004-12-19  4:19 Igor A. Deruga
  2004-12-19 11:07 ` Ron Michael Khu
  0 siblings, 1 reply; 2+ messages in thread
From: Igor A. Deruga @ 2004-12-19  4:19 UTC (permalink / raw)
  To: linux-c-programming

Greetings, fellows!

Hope you'll be able to help me with your useful advice...
I need to establish a connection using a Raw socket. That's what I'm doing:

int sock = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW);
 sockaddr_ll addr;
        addr.sll_family = AF_PACKET;
        addr.sll_protocol = 0;
        addr.sll_ifindex = 0;
        addr.sll_hatype = 0;
        addr.sll_pkttype = 0;
        addr.sll_halen = 0;

But where can I get a value for addr.sll_addr? And what is it? "man 7 packet" 
sais it's a Physical layer address, which is MAC, i guess... so, how do I 
retreive it?

If it's possible, could anybody send me an example that uses sockaddr_ll to 
SEND packets via RAW SOCKET? That'd be great!

Sincerely 
        Igor	


P.S.: I've set the encoding to iso-8859-5. Hope this time it goes through...

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-12-19 11:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-19  4:19 Raw Sockets Igor A. Deruga
2004-12-19 11:07 ` Ron Michael Khu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).