Top "Tcpserver" questions

A tcp server uses raw tcp sockets to communicate with its client (usually without using a higher level protocol such as HTTP or IMAP).

How to track number of clients with Indy TIdTCPServer

I want to know the number of current client connections to an Indy 9 TIdTCPServer (on Delphi 2007) I can't seem to …

delphi indy tcpserver
SocketServer.ThreadingTCPServer - Cannot bind to address after program restart

As a follow-up to cannot-bind-to-address-after-socket-program-crashes, I was receiving this error after my program was restarted: socket.error: [Errno 98] Address already …

python linux sockets tcpserver
Simple HTTP server in Ruby using TCPServer

For a school assignment, I am trying to create a simple HTTP server using Ruby and the sockets library. Right …

ruby http sockets tcpserver
How to test a TCP server implementation?

I have written a TCP server implementation using which I created an application which works as TCP echo service. Now …

testing tcp tcplistener tcpserver
Faster way to communicate using TcpClient?

I'm writing a client/server application in C#, and it's going great. For now, everything works and it's all pretty …

c# .net network-programming tcpclient tcpserver
Indy 10 TCP server

After a lot of searching I thought Indy TCP server would be the best to use on Instant messenger server …

delphi delphi-7 indy indy10 tcpserver
Send sensor data over socket communication (TCP/IP) between Pi's with python

Hello everyone, I have a problemen with some socket communication coding. I have two pi's communicating over TCP/IP with …

python raspberry-pi tcpclient tcp-ip tcpserver
C# Socket.receive continuously receives 0 bytes and does not block in the loop

I am trying to write a simplest multithreaded TCP server in C#, which receives the data from multiple clients. Every …

c# multithreading sockets tcp tcpserver
Python TPCServer rfile.read blocks

I am writing a simple SocketServer.TCPServer request handler (StreamRequestHandler) that will capture the request, along with the headers and …

python httprequest tcpserver
Ruby TCPServer sockets

Maybe I've gotten my sockets programming way mixed up, but shouldn't something like this work? srv = TCPServer.open(3333) client = srv.…

ruby tcpserver tcpsocket