Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: Dyndrilliac on April 11, 2004, 02:07 AM

Title: Question About Winsock and Protocols/Packet Sending
Post by: Dyndrilliac on April 11, 2004, 02:07 AM
How would I go about sending packets in the ICMP Protocol via Winsock Control? Or is this even possible.
Title: Re:Question About Winsock and Protocols/Packet Sending
Post by: K on April 11, 2004, 02:12 PM
you will notice that the Winsock control's "Protocol" property only supports UDP and TCP.  ICMP is a much lower level protocol than TCP and is built primarily "into" the IP protocol.

Check http://www.faqs.org/rfcs/rfc792.html
Title: Re:Question About Winsock and Protocols/Packet Sending
Post by: Tuberload on April 11, 2004, 02:14 PM
Maybe you should look into the Winsock API. I don't know much about them, but they might help.