Tagged Questions

1
vote
1answer
64 views

Get Sender's IP Address using Overlapped IO

I know that WSARecvFrom has a parameter which is meant to return the sender's ip address. However, when I use it with overlapped io, the variable that I pass it doesn't get filled. ...
1
vote
2answers
105 views

Why wont a simple socket to the localhost connect?

I am following a tutorial that teaches me how to use win32 sockets(winsock2). I am attempting to create a simple socket that connects to the "localhost" but my program is failing when I attempt to ...
1
vote
1answer
70 views

Winsock2 data loss when in debugger

i am using Winsock2 in conjunction with overlapped I/O. This means i am calling WSARecv with a WSAOVERLAPPED structure and later i wait with WSAWaitForMultipleEvents for data. I made the strange ...
1
vote
4answers
872 views

Winsock2: How to allow ONLY one client connection at a time by using listen's backlog in VC++

I want to allow only one connection at a time from my TCP server. Can you please tell, how to use listen without backlog length of zero. I m using the code(given below), but when i launch 2 client ...
1
vote
3answers
2k views

Calling WinSock functions using LoadLibrary and GetProcAddress

Basically I have a header file like this: #if WIN32 typedef DWORD (WSAAPI *SocketStartup) (WORD wVersionRequested, LPWSADATA lpWSAData); typedef SOCKET (WINAPI *MakeSocket)(IN int af, IN int type, ...
0
votes
3answers
263 views

C++ , Send() function sends extra bytes

I am having trouble with a Winsock2 wrapper classes (client-server) and after countless hours of scratching-my-head-in-confusion, I decided it would be better if I asked your opinion. To be more ...
0
votes
1answer
176 views

Winsock's send() works oddly

I'm trying to write an experimental server program that accepts a connection and sends a message to the client. I got the client to connect, but I can't seem to send the message without doing really ...
0
votes
6answers
343 views

Receiving all data sent with C sockets

If i write a server, how can I implement the receive function to get all the data sent by a specific client if I don't know how that client sends the data ? I am using a TCP/IP protocol. Thanks in ...
0
votes
1answer
668 views

C++ Winsock Problem - accept()

I've started tying to learn Winsock with C++ and I'm having some problems. I started by following the Winsock Example on MSDN ( a basic client-server ). ...
0
votes
1answer
117 views

MFC winsock1 and 2

I'm deep in trouble with my project. I have to link two radar with my program, but the first has its own library that uses winsock, while in the second I want to use winsock2. How can i do that? At ...