Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
439 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
2answers
310 views

Listening for MessageBox and Dialog results in my application

I have a "ControlMonitor" class which is designed to listen to the events that occur on a form. The way it works is, I pass the form that I want to monitor into an instance of this class, and then the ...
4
votes
1answer
2k views

Who is listening on a given TCP port on Mac OS X?

On Linux, I can use netstat -pntl | grep $PORT or fuser -n tcp $PORT to find out which process (PID) is listening on the specified TCP port. How do I get the same information on Mac OS X?
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 ...
3
votes
1answer
93 views

Eclipse listens on port 42540 (?)

I just appalledly realized my Eclipse IDE listens on port 42540. During the past weeks I installed some more or less useful plug-ins (and removed some of them). Maybe one of them listens on this port, ...
3
votes
2answers
193 views

Application path and listening port

I'd like to know which application that is listening on a port on a linux machine. There are multiple servers, apache and what not on a single machine and I'd like to know which server is listening ...
2
votes
3answers
35 views

Android - Listen to a disabled button

How can I respond to an event based on clicking a disabled Button. I have a requirement that I have to present Dialog, when a disabled Button is clicked but the listener I have assigned does not fire ...
2
votes
1answer
201 views

Node.js listen to MongoDB change

is there a way that node.js listen to change in a particular data in a collection of MongoDB? and if there is change, then fire an event in node.js?
2
votes
1answer
206 views

How can I stop/restart listening and accepting on a server socket in Winsock2 C++?

I made a socket (Winsock2) in Visual Studio Pro C++ to listen on a port for connections (TCP). It works perfectly, but I let it run in its own thread, and I want to be able to shut it down with the ...
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 ...
2
votes
3answers
102 views

tiemout for a function that waits indefiinitely (like listen())

I'm not quite sure if it's possible to do what I'm about to ask so I thought I'd ask. I have a multi-threaded program where threads share a memory block to communicate necessary information. One of ...
1
vote
1answer
83 views

android listen for app launch

I need to develop a service which listen for every activity start. I must do something like this? ActivityManager am = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE); ...
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
93 views

putting “On Change” listener on jFormattedTextField

I have a jFormattedTextField in my program and I need to update a jLabel's text when jFormattedTextField value has been changed validly. Actually jFormattedTextField gets a number and jLabel displays ...
1
vote
1answer
637 views

HOME button doesn't work, is it possible to listen?

Ok here's my problem. Whenever I press the HOME button nothing happens. If i'm in an app and press it i'm not sent to the home screen like I should be. However, if the screen is locked and i press it ...
1
vote
2answers
357 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
1answer
397 views

android service to listen to a specific port

I want to know how to set an android service that listen to a specific port e.g. http://127.0.0.1:12345
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 = ...
1
vote
2answers
942 views

How to listen on a network port in Objective-C

I am trying to make an application for iPhone that can listen for traffick on a specific network port. A server on my network is sending out messages (different status messages for devices the server ...
1
vote
1answer
445 views

How to listen to a random tcp socket in node.js

I know I can create a tcp server like that in node.js var dataServer = net.createServer(function (stream) { }); dataServer.on("listening", function() { // this data server listen to a random ...
1
vote
0answers
149 views

I want to execute a function when new dom elements are added somewhere in the body

I would like to execute a function when new dom elements are added via ajax, somewhere in the body, by a 3er party JS. The function i want to execute is jqueryui's tooltip(), which changes title ...
1
vote
1answer
2k views

How to clone a jQuery Listen plugin event?

I have some <tr> elements on my page with a click() event attached to an image that sits inside each one. I use this code $(this).clone(true).appendTo("table#foo"); to do the following: ...
1
vote
5answers
277 views

How do I listen/identify when a program runs in Windows using C++?

Specifically, I want to listen to when programs are run and record information such as: timestamp, executable, windows name and user.
0
votes
3answers
34 views

Apache server - not loading localhost [closed]

I had this problem with my Apache server not starting, because port 80 was being used by some other program, I changed the 'Listen' port number to 8888 and the server got started. But now the problem ...
0
votes
1answer
30 views

javascript jquery create and listen for event

Is there an simple example of how to create an event in javascript and listen for it? Trying to create a Complete event, similar to the ajaxComplete. Want other stuff on the page to show messages ...
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
1answer
173 views

How can I make my TCP listening app safer?

I’m looking for advice on writing a very safe C/C++ app that will listen to a tcp port. I'd like to peek at what others are trying to do to my machine, but I’d rather not install an elaborate honeypot ...
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
2answers
308 views

android: how to listen to “sd card removed unexpectedly”

I have a program that uses content from sd-card. I want to listen to different states like sd-card mounted or sd-card removed unexpectedly. How can I do so. An example would be of a great help. ...
0
votes
2answers
596 views

Jquery plugin. Combobox. Event onChange

I have a problem with this plugin http://jquery.sanchezsalvador.com/jquery/page/jquerycombobox.aspx On my page there are a few select boxes, which transformed by jquery.combobox. As far as it's ...
0
votes
1answer
57 views

Can I force some ports for listening only(mean servermdoe)

In linux is there a way to tell the system that never give a port for client connection, but instead allocate it only for requests for listening(server). That is, given a port P, If a proc wants to ...
0
votes
1answer
177 views

OpenSSL DTLSv1_listen: server cannot get a message from client

friends! I have a huge problem! And I need your help! Please help me! I have found an example of DTLS implementation in the Internet, it is called dtls_udp_echo.c. And I have the following code in ...
0
votes
2answers
402 views

Listen queue for multi threaded TCP server

What is the significance of a listen queue(second argument in listen call) in a multi threaded TCP server? It's a little confusing because why do we need a queue, when we have multiple threads to ...
0
votes
0answers
278 views

PostgreSQL LISTEN/NOTIFY not working

Here is the basic setup: A PHP script writes to a table in a database and then issues NOTIFY job_added. It then begins listening for a response by issuing LISTEN job_complete A daemon (written in ...
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
0answers
112 views

Long delay when trying to register listener for state of data connection on Android

When I try to register a listener for the phone's data connection, my GUI gets locked for a good 5-7 seconds. final private PhoneStateListener listener = new PhoneStateListener() { ...
0
votes
1answer
366 views

Android SDK - is multicastlock working? it does not work when screen is off!

I implemented codes for receiving multicast diagram. My phone can get a diagram when screen is on. However when screen is off, phone does not get any diagram from subnet. (PC sends a diagram on ...
0
votes
1answer
559 views

Listen/register 2G 3G change on android

I know how know network type with : TelephonyManager telManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); int network_type = telManager.getNetworkType(); But I want ...
0
votes
1answer
213 views

How can i test/ listen for tab change?

Basically the question above, you don't need to read the lot below, just additional info on how i want to use it. I Have an activity (which extends tab activity) with two tabs. My tabs don't have ...
0
votes
1answer
189 views

Flex 4 listen for JavaScript

I am currently using ExternalInterface to call JS functions from Flex. Is it possible to do the same the other way around: have Flex execute a function when a certain trigger is executed in JS? I ...
0
votes
2answers
270 views

Android Intercepting Events From Other Apps

Does anyone knows how to intercept events from other 3rd party Apps, say, games, Maps, etc. This includes events like motionevents, screen prompts, etc. We have limited success with capturing touch ...
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
2answers
289 views

Java ServerSocket Multiple Listen Instances

i have a java game app that uses sockets to communicate with each other. the issue is when i do a socket listen (server), i can run another instance of the game on the same machine using the same ...
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
2answers
691 views

How do I make a simple DNS server listening two ports simultaneously in python

I'm trying to build a DNS server in python. It must listen two ports (8007 - client, 8008 - admin). The client only send an URL and receives the respective IP. The admin has permissions to change the ...

1 2