| i just thought maybe something like
| winsock listening for the ping could
[quoted text clipped - 5 lines]
| >
| > http://www.freesoft.org/CIE/Topics/53.htm
At first it seemed like a possibility to me too.
I think the relevant line, from the ICMP link at the link above, is
"ICMP messages, delivered in IP packets, are used for out-of-band
messages related to network operation or mis-operation."
Regular data is sent in TCP or UDP packets, and it is these that a
winsock control will see; ICMP messages are not TCP packets, and are not
seen by a socket. They are intercepted at the TCP/IP driver level, and
are not forwarded "up the chain", but instead are responded to directly
by the driver.
Stanley Baxter - 31 Oct 2004 20:05 GMT
ok that makes good sense to me.
many thanks for your help Steve
> | i just thought maybe something like
> | winsock listening for the ping could
[quoted text clipped - 17 lines]
> are not forwarded "up the chain", but instead are responded to directly
> by the driver.