Tagged Questions
0
votes
1answer
182 views
socket programming connect() fails the second time I run the loop
Well i am trying to run the server side and the client side in a for loop. The first time I run it, it runs fine but the second time either the connect fails or it gets stuck at accept(). Here's my ...
0
votes
1answer
662 views
TCP backlog exhaustion causes incoming connections not to be signaled
I am doing following:
Open a listening TCP socket.
Set BACKLOG to 10
Open 50 connecting sockets (non-blocking connect is used)
poll on the listening socket and accept the connections
Connections ...
3
votes
2answers
831 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
2answers
68 views
output to connection request is not atomic
I have created a socket and I am trying to accept the connection. Everything works fine. But, the output is confusing me about how the following code works.
// this a server program
...
0
votes
1answer
665 views
TCP server accept call does not return
We need some help with a TCP client server code. The client timesout from its connect call and the server does not return from accept. Here's the strace.
strace -p 7167 -p 7168 -p 7297
Process 7167 ...