The accept tag has no wiki summary.
7
votes
3answers
4k views
Socket listen doesn't unbind in C++ under linux
I have a socket that listens on some port.
I send the SIGSTOP signal to the thread that waits on the port(using accept) and terminate it. then I close the fd of the socket that I waited on. But for ...
1
vote
1answer
4k views
socket.accept error 24: To many open files
I have a problem with open files under my Ubuntu 9.10 when running server in Python2.6
And main problem is that, that i don't know why it so..
I have set
ulimit -n = 999999
net.core.somaxconn = ...
21
votes
2answers
2k views
rails 3 response format and versioning using vendor MIME type in the Accept header
Preamble:
I investigated how to version an API and found several ways to do it. I decided to try peter williams' suggestion and created new vendor mime types to specify version and format. I could ...
8
votes
1answer
3k views
accept() with sockets shared between multiple processes (based on Apache preforking)
I'm working on some Python code modeled on Apache's MPM prefork server. I am more an applications programmer than a network programmer and it's been 10 years since I read Stevens, so I'm trying to get ...
1
vote
3answers
1k views
c++ linux accept() blocking after socket closed
I have a thread that listens for new connections
new_fd = accept(Listen_fd, (struct sockaddr *) & their_addr, &sin_size);
and another thread that closes Listen_fd when when it's time to ...
2
votes
1answer
786 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 ...
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 ...
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
2k views
twitter api returning: Not authorized to use this endpoint
EDIT: I was hoping abraham was wrong, but unfortunately for the time being he is absolutely correct. Its not part of the official API.
I'm trying to use the twitter api to accept a follow request on ...
1
vote
2answers
153 views
Creating a local server visible through firewalls
I have a local server written in C++ listening to inbound TCP connects using plain socket ::accept() and UDP recvfrom(). I have two problems with this that I wish to solve:
Can I programatically ...
1
vote
2answers
3k views
Java “Printer is not accepting jobs” old Brother printers
I have client which has a problem with printing from JAVA applications, using old Brother printers. The exception he gets is "Printer is not accepting jobs".
Other applications (not java ...
0
votes
0answers
798 views
Adding a QSpacer to QGridLayout more than once is causing myChildDialog.accept() to close the parent MainWindow too
I have a QMainWindow, which has a tab called ToolTab which has a Widget called Tool Widget. Tool widget has a few buttons that launch a few QDialogs with
myCustomDialog.exec_()
This all works well ...
0
votes
4answers
2k views
C++ Failing at SOCKET accept() Method
I am currently make a Server, I learned to make something like this:
while(true)
{
SOCKET s = accept(s, ....)
// do something with the connection
printf("connection\n");
}
I learned ...