Tagged Questions

2
votes
1answer
76 views

Responsing on ICMP in select

The basic code sequence I'm interesting for is (pseudocode) sendto(some host); // host may be unreachable for now which is normal ... if(select(readfs, timeout)) // there are some data to read ...
2
votes
1answer
148 views

What type of network traffic does not use Winsock in Windows?

I am developing some low-level stuff (LSP) and found out, that SMB traffic does not go through LSP, because SMB does not use Winsock. There is a paragraph in MSDN about it, but this is in part of MSDN ...
0
votes
0answers
133 views

Problem with Winsock RAW ICMP PING[Trailer bits]

Hi guys here is my problem.I am trying to send ICMP packets to a HOST using WINSOK.So here is my code: #define WIN32_LEAN_AND_MEAN #include <winsock2.h> #include <ws2tcpip.h> #include ...
0
votes
1answer
574 views

How to get ICMP port unreachable packet on UDP socket on Windows

I have an application that uses sendto() with UDP to check resources on different ports. How can I get the ICMP port unreachable packet using recvfrom()? My recvfrom() is like this: ...
0
votes
1answer
183 views

UDP socket fail to recieve ECONNREFUSED

I created a socket using socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP). According to this, if i send simple packet several times(multiply send() and|or sendto(), i can get ECONNREFUSED. ICMP should tell ...