0
votes
1answer
20 views
close() vs. shutdown() with recv()
I have the following code:
Client side:
n=recv(sock,buf,1200,NULL);
Server side:
shutdown(sockk,SD_BOTH);
The problem is, the client side recv is returning 0, meaning gracef …
0
votes
3answers
82 views
Can two application listen to the same port?
As simple as it gets - can two application on the same machine bind to the same port and ip address? Taking it a step further, can one app listen to requests coming from a certain …
0
votes
3answers
51 views
Splitting https between Apache and Game Server
Hi,
i want to have both an Apache and a Game Server to be reachable on port 443 of the same IP address.
The game server connection is a normal TCP connection that is established …
1
vote
7answers
90 views
what type of bug causes a program to slowly use more processor power and all of a sudden go to 100%?
Hi,
I was hoping to get some good ideas as to what might be causing a really nasty bug.
This is a program which is transmitting data over a socket, and also receives messages bac …
0
votes
2answers
60 views
What can cause select to block in Python?
Here's a snippet of code I'm using in a loop:
while True:
print 'loop'
rlist, wlist, xlist = select.select(readers, [], [], TIMEOUT)
print 'selected'
# do stuff
…
0
votes
2answers
45 views
How to use simple TCP/IP sockets connection over Net.TCP WCF binding?
How to use simple TCP/IP sockets connections over/with Net.TCP WCF binding?
Idea is – We have a web service with Net.TCP binding on some URL, port. We want to take advantage of th …
0
votes
3answers
62 views
How do I redirect the input and output of a console C# program to a socket?
How do I redirect the input and output of a console C# program to a socket? I need to start the program from within another process, and make it receive input and emit output to an …
0
votes
1answer
31 views
How to detect when a socket can be closed?
I am printing to a thermal ticket printer which has no standard drivers. Traditionally our business process has been to produce a batch file of print items and to deliver that thro …
1
vote
1answer
67 views
Can select() be used for clients, not just servers?
I'd like to make a TCP client that makes multiple connections while a select() loop that receives data from them is running in a separate thread. I'm not sure this is possible, tho …
1
vote
2answers
66 views
AF_UNIX socket: can I pass socket handle between processes?
Let's say I create a socketpair() and I pass the handle of one of the socket to a spawned process (popen), will the said process be able to communicate back with the parent?
The e …
0
votes
1answer
17 views
How can I send data to multiple IPs in VB.NET with TCP/IP sockets?
I have an array of IP addresses, and I want to send the same data to all of them. I could just send the loop code that sends data but I think there's a better way of doing this.
I …
0
votes
4answers
89 views
How do I stop reading from a socket if the HTTP response doesn’t have a Content-Length header?
The following code snippet reads HTTP response. Say the response doesn't contain a Content-Length header and the Content-Type is not text/html, how do I terminate the while loop?
…
0
votes
1answer
15 views
Socket.UseOnlyOverlappedIO?
Does anyone know what Socket.UseOnlyOverlappedIO does, and if so, does it affect performance? There seems to be no real explanation on MSDN.
Thanks in advance.
2
votes
4answers
93 views
Can Silverlight 3 OPEN SOCKETS?
Can Silverlight 3 OPEN SOCKETS?
If yes.
What do I need
MSDN if there is any help on this.
Open Source Libs/wrappers for encoding/decoding.
Tutorials and blog articles on How to …
2
votes
2answers
42 views
Php-Flash communication over sockets
Good time of the day, dear developers!
I am not any kind of network programming pro, but it happened that I have faced necessity to develop socket-server on php (no way for using …
