Tagged Questions
4
votes
2answers
440 views
listen() ignores the backlog argument?
I have the following problem:
I have sockfd = socket(AF_INET, SOCK_STREAM, 0)
After I set up and bind the socket (let's say with sockfd.sin_port = htons(666)), I immediately do:
listen(sockfd, 3);
...
4
votes
10answers
2k views
Is it possible to unlisten on a socket?
Is it possible to unlisten on a socket after you have called listen(fd, backlog)?
Edit: My mistake for not making myself clear. I'd like to be able to temporarily unlisten on the socket. Calling ...
2
votes
1answer
265 views
Know the size of accept pending connections queue in GNU/Linux
In a typical C network server implementation, the size of the accept pending queue can be set with listen. When a new connection incomes and there is no more space in the queue, ECONNREFUSED is send ...
1
vote
1answer
79 views
Send on Socket while listening
I have programmed (in JAVA) a socket using simple examples in the web.
I can either send or listen at one time - as far as I understood.
Isn't there a possibility where I can send/listen/receive ...
1
vote
2answers
358 views
why would I get EADDRINUSE not from bind() but from listen()?
In a C++ Linux application I'm calling socket(), bind() and listen(), to create a server socket. Usually if the application is started twice (with same server port), in the second process bind() will ...
1
vote
3answers
142 views
Socket programming - API doubt
There was this question posted in class today about API design in socket programming.
Why are listen() and accept() provided as different functions and not merged into one function?
Now as far as I ...
1
vote
1answer
507 views
.NET Socket Listen backlog
I have a server socket that I have configured to allow one connection at once (by blocking Accept calls with a semaphore), with a backlog queue size of 1. That is, I called .Listen(1).
I then follow ...
1
vote
2answers
690 views
Python: Listen on two ports
import socket
backlog = 1 #Number of queues
sk_1 = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sk_2 = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
local = {"port":1433}
internet = ...
0
votes
1answer
100 views
C# - System.Net Socket.Listen Backlog
Ok, I have connected to an IP address using the following code:
IPAddress myIpAddress = IPAddress.Parse("10.10.15.200");
IPEndPoint ip = new IPEndPoint(myIpAddress, 5001);
...
0
votes
2answers
38 views
TCP: is it possible to bind a socket and then /both/ connect from it and accept from it (both client and server rules)?
is it possible in any common platform - say, in Windows - to write a servient process that creates a socket, binds it to exactly one local "address:port" (fixed), and then:
use it to listen for ...
0
votes
2answers
43 views
error message: “451 unable to listen on socket” [closed]
i have a limited knowledge and understanding of code and whatnot, so i apologize if this is a dumb (or easily solvable) question; but I am trying to access an FTP site. i have the address, login name, ...
0
votes
1answer
369 views
Setting listen() backlog to 0
When listening on a socket, I would ideally like to limit the backlog to zero, i.e.
listen( socket, 0 );
However, based on the following post, listen() ignores the backlog argument?, this wouldn't ...
0
votes
1answer
301 views
Listening on UDP socket
I am using this code to receive data from a UDP socket and return it as string:
byte[] receiveData = new byte[MAX_PACKET_SIZE];
DatagramPacket receivedPacket = new DatagramPacket(receiveData, ...
0
votes
2answers
131 views
can apache handle non-http messages
I have a apache webserver, and we need to develop a module in it (using mod_python or mod_wsgi). It will ofcourse handle the requests sent as http GET/POST. However, we would like this module to ...
0
votes
1answer
153 views
Linux: Finer-grain control of INET listen socket binding?
I have interfaces lo, eth0, and eth0:1.
progA creates a listen socket, and binds it to port p on INADDR_ANY.
Simultaneously, I would like to use ncat to port forward, listening on the same port ...
0
votes
3answers
914 views
C# Socket.Listen(MAX_CONNECTIONS);
i need some help with socket.listen.
my max_connections is set to 1. but even after a client is connected if another client tries to connect, on the client side it says it has connected although the ...
0
votes
3answers
446 views
How to create an application in J2EE which listends for an incoming request on TCP/IP socket?
I need to have a business logic running inside Glassfish 2.1 Appserver, which listens for inbound TCP connections and serves them. I feel that this kind of task is not really fit inside the appserver ...
-1
votes
1answer
950 views
How to listen on a specific port on iPhone ios4.2?
I'm going crazy about my actual project...
I've got a device which is sending data on a specific port. My goal is to detect all this kind of device on that port.
Example : I've got 4 this kind of ...