I'm relatively new to socket communications. I'm trying to send a packet of data via UDP protocol on a WINCE device. Everything indicates that it is functioning properly (wsaStartup init, socket initialization, sendto returns # bytes I'm sending) except that I don't see the transmission of data when using WireShark to look at network comm. I see communication between the WINCE device (172.18.1.10) and my PC (172.18.1.2), but not from the following code:
// Fill in Port & IP Address Info
SenderAddr.sin_family = AF_INET;
SenderAddr.sin_port = htons(SenderPort);
SenderAddr.sin_addr.s_addr = inet_addr("172.18.1.10");
Bookmarks