vote up 0 vote down star

Problem:

  • Call to send(), returns Winsock Error 10038 against socket handle

Illustration:

acceptedSocket = accept (server, (sockaddr *)&sin, &len);
  • accept(), returns 0
    • A new thread, is created for each connection
    • send(), (in thread function) returns 10038

Illustration: - in thread function

//omitted
SOCKET RemoteSocket = (SOCKET) client;
//omitted
send (RemoteSocket, stringToSpend, strlen(stringToSpend), 0)

Suggestions:

  • Possible, race condition?
  • Could use I/O completion ports, but not at this stage
flag

3 Answers

vote up 2 vote down check

Isn't the problem in the line

acceptedSocket = accept (server, (sockaddr *)&sin, &len) == INVALID_SOCKET)

You make acceptedSocket the result of the comparison, but you should store the actual socket returned from accept somehow:

acceptedSocket = accept (server, (sockaddr *)&sin, &len);
isOK= acceptedSocket!=INVALID_SOCKET;

Although I'm a bit confused by the unbalanced parentheses in your post, so I may be wrong

link|flag
vote up 2 vote down

accept() returns you a handle to a new connection-specific socket. for server code it's 2+ sockets involved: one is in listen state you are calling accept() for and second is one returned from accept() - it's an incoming connection socket. Following accept() can return socket for second incoming connection etc. if accept() returns 0 it's not an incoming connection - it's an error.

link|flag
One correction: accept returning 0 is a normal (successful) execution. Errors are signalized by -1 – jpalecek Feb 23 at 14:48
vote up 0 vote down

Hmm, seems like your send is executing too fast before the accept happened. So the socket used in send is not valid at the point send is executed. One of the obnoxious feature of multithreading. You need to wait for an event at the send thread and fire an event when an accept occurs

link|flag
OK, I'll try this... – Aaron Feb 23 at 14:52
I am curious to know if this worked for you. :-) – rptony Feb 23 at 15:14
A socket handle is defined as "a non-negative integer". So, I believe, zero is valid? – Aaron Feb 23 at 16:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.