23
votes
16answers
4k views
What is the difference between a port and a socket?
This was a question raised by one of the software engineers in my organisation. I'm interested in the broadest definition.
10
votes
4answers
443 views
Best Flash Audio/Video + Interactivity server?
I'm looking for suggestions on Flash realtime servers. Currently, we use a combination of Moock's Unity and Red5, but there are a couple problems. First, we are moving to AS3, and Unity only supports …
6
votes
3answers
542 views
What happens to sockets when I unplug a network cable?
I have three applications that talk to each other using sockets. They can all live on their own machines but they can also share a machine. Right now I'm having two of them on the same and the third …
5
votes
2answers
298 views
Is Twisted an httplib2/socket replacement?
Many python libraries, even recently written ones, use httplib2 or the socket interface to perform networking tasks.
Those are obviously easier to code on than Twisted due to their blocking nature, …
5
votes
5answers
653 views
C++ socket 256 byte buffer
Hello. I am trying to use some socket network programming in C++. I am trying to send the text "Hello World!" to a server using the C++ send() function. At first, I set the buffer to the size of 13 …
5
votes
2answers
682 views
What causes Python socket error?
File "C:\Python25\lib\SocketServer.py", line 330, in __init__
self.server_bind()
File "C:\Python25\lib\BaseHTTPServer.py", line 101, in server_bind
SocketServer.TCPServer.server_bind(self)
…
5
votes
2answers
436 views
Delphi: Limiting TCP connections
Hello.
I'm using the TServerSocket component in my Delphi application. I would like to limit client connections, let's say to one thousand. Unfortunately i don't know how to do that. The component …
5
votes
6answers
3k views
Tips / techniques for high-performance C# server sockets
I have a .NET 2.0 server that seems to be running into scaling problems, probably due to poor design of the socket-handling code, and I am looking for guidance on how I might redesign it to improve …
5
votes
2answers
901 views
Making a Nonblocking socket for WinSocks and *nix
In C/C++, how would I turn a blocking socket into a non blocking socket in both WinSocks and *nix; so that select() would work correctly. You can use the pre-processor for the platform specific code.
5
votes
9answers
1k views
Binding a socket to port 80 in ansi c
When I try to bind port 80 to a socket in c, i always get the error, that I don't have permission to use this port. is there an easy way to get this permission?
5
votes
4answers
752 views
How do you specify a port range for Java sockets?
In Java you can give the number zero as a single parameter for the Socket or DatagramSocket constructor. Java binds that Socket to a free port then. Is it possible to limit the port lookup to a …
4
votes
6answers
696 views
Question about server socket programming model
Hello,
Over the last couple of months I've been working on some implementations of sockets servers in C++ and Java. I wrote a small server in Java that would handle & process input from a flash …
4
votes
3answers
824 views
what is the best way to do keep alive socket checking in .NET ?
I am looking for a way to do a keep alive check in .NET. The scenario is for both UDP and TCP.
Currently in TCP what I do is that one side connects and when there is no data to send it sends a keep …
4
votes
5answers
698 views
Tcp/Ip Socket connections in .NET
For my current project, I need to request XML data over a tcp/ip socket connection. For this, I am using the TcpClient class:
Dim client As New TcpClient()
client.Connect(server, port)
Dim stream …
3
votes
4answers
294 views
Data structures for real time applications
We are designing a p2p applications using c++ which transmits voice to other peer using UDP.
We are capturing a mic signal in a buffer in the thread which captures voice for one second in the while …
