Tagged Questions
4
votes
3answers
190 views
How do I stop a Listening server in Go
I've been trying to find a way to stop a listening server in Go gracefully. Because listen.Accept blocks it is necessary to close the listening socket to signal the end, but I can't tell that error ...
4
votes
2answers
311 views
How does the operating system load balance between multiple processes accepting the same socket?
I'm reading the docs of the cluster module in Node.js:
http://nodejs.org/api/cluster.html
It claims the following:
When multiple processes are all accept()ing on the same underlying
resource, ...
3
votes
2answers
814 views
How to connect client/server in C (Beej's Guide to Network Programming)
I am working through a simple tutorial for C network programming found here:
http://beej.us/guide/bgnet/output/html/multipage/index.html
After reading through it, my plan was to implement a testing ...
0
votes
3answers
1k views
Socket programming accept() in C
Okay I'm brand new to socket programming and my program is not behaving like I'd expect it to. In all the examples that I see of socket programming they use accept() and all the code after assumes ...
1
vote
2answers
2k views
WinSock best accept() practices
Imagine you have a server which can handle only one client at a time. The server uses WSAAsyncSelect to be notified of new connections. In this case, what is the best way of handling FD_ACCEPT ...
0
votes
3answers
938 views
what ip address does accept return
see the following code:
accept(sockfd, (struct sockaddr*)&cliaddr, &slen);
cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100);
my client connects from localhost.
i get an ...