0
votes
2answers
38 views

Always print EAGAIN when calling accept after epoll_wait

I'm using epoll to monitor the listen fd event, after the EPOLLIN event occur I call accept to process, but always EAGAIN error. Anyone can give me some suggestions? thanks! [log] print the ...
1
vote
1answer
47 views

C sockets accept() failing when there are no connections in the queue

I am reading a book on sockets in c and am making a very simple server program. I copied the code verbatim. There is nothing trying to connect to this server program yet and have change the port ...
0
votes
2answers
111 views

Sequential server: behavior on accept(2) call

I have a server with a TCP-socket in a non-concurrent single process implementation. int main(int argc, char** argv) { int sock_ds, acc_sock_ds, opt, client_addr_l; unsigned short port; ...
0
votes
1answer
89 views

Get WAN ip by sockaddr_in

I'm trying to get client's ip by my sockaddr_in but this ip always 192.168.1.1(router ip).How can i get WAN ip correctly?
1
vote
1answer
117 views

C - popen() and fread() causing accept() to throw an error

I am very new to C so sorry if I am really confused. I am trying to have a server process fork() another process to run a C program through popen(). But as soon as I attempt to read the bytes, I get ...
0
votes
3answers
258 views

Socket, accept() function, Invalid argument

I am getting an error "Invalid argument" when i call the accept() function on the server side of a client-server application. I don't get what is wrong and if you see what is wrong let me know please. ...
0
votes
1answer
183 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 ...
2
votes
0answers
292 views

Server seems to drop connections in accept

I'm having trouble with implementing a server that has a master thread invoking accept() and then passing on the new client socket to a slave thread (I have a fixed-size thread pool created ...
2
votes
3answers
1k views

How to use select function when you have UDP socket

I want to make a multi client - one server quiz application. In this, firstly, the clients will connect to the server and will registered themselves. Then, the server will multicast a question to ...
4
votes
2answers
646 views

select and accept delay in Linux

I created a simple application to accept IPv4 TCP connections using select() and accept(). I use a python script to test this. It opens 100 connection in sequence. ie: for i in range(100): s = ...
3
votes
2answers
838 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 ...
-1
votes
1answer
415 views

while reading string from socket, write prints extra characters

In the following program I have a read and write through a server. But when execute write(), it prints out extra characters // this a server program #include <stdio.h> #include <stdlib.h> ...
0
votes
2answers
69 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
117 views

How to know if a new client is connecting to a socket with select()

My question is : How, (with select()) can I know if a new client is connecting on my server ? A can't just use accept because accept() is blocking... Example : I have two clients set on fd user1 (fd ...
1
vote
2answers
148 views

accept returns existing connection, causing seg fault

I am creating a server daemon in c that accepts numerous simultaneous connections, and the clients will be sending data to the server. I currently have each client connection being spawned into a new ...
1
vote
3answers
213 views

why we cannot accept() a socket on some process and recv() data from its child?

I'm trying to implement a simple web server on Linux that connects to the client (the browser) ,receives some requests from the client (e.g GET), and then sends back the response with desired file. I ...
1
vote
1answer
410 views

How the kernel continues with the three way handshake after it sets the state to TCP_SYN_RECV

I am trying to understand how the TCP three way handshake is implemented in Linux kernel, version 2.6.33. I started with function accept() which leads me to: ...
1
vote
2answers
243 views

what's the host port number when we use accept() and connect() in C socket programming

the Beej's Guide to Network Programming explains the accept() as follows: What's going to happen is this: someone far far away will try to connect() to your machine on a port that you are listen()ing ...
1
vote
1answer
880 views

Dealing with listening socket by epoll

All below is from man epoll page: The function do_use_fd() uses the new ready file descriptor until EAGAIN is returned by either read(2) or write(2). Code example for ET triggered ...
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 ...
2
votes
1answer
798 views

Is accept() thread-safe?

I'm currently writing a simple webserver in C for a course I'm doing. One requirement is for us to implement a thread pool to handle connections using pthreads. I know how I would go about doing this ...