Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a TCP server (blocking socket model). I'm having trouble implementing a valid normal program exit when the server is waiting (blocking) for new connection attempts on Accept (I use WSAccept). The code for the server's listening socket is something like this (I omitted error handling and other irrelevant code):

int ErrCode = WSAStartup(MAKEWORD(2,2), &m_wsaData) ;


// Create a new socket to listen and accept new connection attempts
struct addrinfo hints, *res = NULL, *ptr = NULL ;
int rc, count = 0 ;
memset(&hints, 0, sizeof(hints)) ;

hints.ai_family = AF_UNSPEC ;
hints.ai_socktype = SOCK_STREAM ;
hints.ai_protocol = IPPROTO_TCP ;
hints.ai_flags = AI_PASSIVE ;

CString strPort ;
strPort.Format("%d", Port) ;

getaddrinfo(pLocalIp, strPort.GetBuffer(), &hints, &res) ;

strPort.ReleaseBuffer() ;

ptr = res ;

if ((m_Socket = WSASocket(res->ai_family, res->ai_socktype, res->ai_protocol, NULL, 0, 0)) == INVALID_SOCKET)
{
    // some error   
} 

if(bind(m_Socket, (SOCKADDR *)res->ai_addr, res->ai_addrlen) == SOCKET_ERROR)
{
    // some error
}

if (listen(m_Socket, SOMAXCONN) == SOCKET_ERROR)
{
    // some error
}

So far so good... Then I implemented the WSAccept call inside a thread like this:

SOCKADDR_IN ClientAddr ;
int ClientAddrLen = sizeof(ClientAddr) ;

SOCKET TempS = WSAAccept(m_Socket, (SOCKADDR*) &ClientAddr, &ClientAddrLen, NULL, NULL);

Of course the WSAccept blocks until a new connection attempt is made but if I wish to exit the program then i need some way to cause WSAccept to exit. I have tried several different approaches:

  1. Attempt to call shutdown and/or closesocket with m_Socket from within another thread failed (program just hangs).
  2. using WSAEventSelect indeed solves this issue but then WSAccept delivers only non-blocking sockets - which is not my intention. (Is there a way to make the sockets blocking?)
  3. I Read about APC and tried to use something like QueueUserAPC(MyAPCProc, m_hThread, 1)) but it didn't work either.

What am I doing wrong ? Is there a better way to cause this blocking WSAccept to exit ?

share|improve this question
I can't suggest any neat way of solving your problem but there are some nasty approaches. (1) just exit the process and leave the OS to clean up sockets and other active handles. (2) set a shutdown flag then connect to the server that is blocked in the accept call, then close this connection and shutdown cleanly. By far a better approach though would be to make your accepting socket non-blocking and using WSAEventSelect as you suggest. – simonc Jan 16 at 15:53
this implementation would look lovely by using Boost.Asio. There's a well-documented approach to solve this problem in Asio. – Andy T Jan 16 at 16:00
Calling shutdown on a listening socket isn't legal. – EJP Jan 17 at 10:32
@simonc - why are (1) and (2) 'nasty'? Either approach will work OK. If the app wants to close, ExitProcess() is fine - works on all Windows versions since W95, needs no extra shutdown code, (that needs testing, extending and maintaining), and no redesign. Why do developers insist on writing complex shutdown code to 'clean up gracefully' when the OS can do the job with no problems? – Martin James Jan 21 at 10:04

3 Answers

Go with non-blocking accepting socket (WSAEventSelect as you mentioned) and use non-blocking WSAccept. You can make a non-blocking socket that WSAccept returns into blocking socket with ioctlsocket (see msdn).

share|improve this answer

Use select() with a timeout to detect when a client connection is actually pending before then calling WSAAccept() to accept it. It works with blocking sockets without putting them into non-blocking mode. That will give your code more opportunities to check if the app is shutting down.

share|improve this answer

Do all the other stuff you absoultely have to on shutdown, (maybe you have DB connections to close, or files to flush?), and then call ExitProcess(0). That will stop your listening thread, no problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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