A tcp server uses raw tcp sockets to communicate with its client (usually without using a higher level protocol such as HTTP or IMAP).
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 tcpserverI have written a TCP server implementation using which I created an application which works as TCP echo service. Now …
testing tcp tcplistener tcpserverI'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 tcpserverHello 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 tcpserverI am trying to write a simplest multithreaded TCP server in C#, which receives the data from multiple clients. Every …
c# multithreading sockets tcp tcpserverI am writing a simple SocketServer.TCPServer request handler (StreamRequestHandler) that will capture the request, along with the headers and …
python httprequest tcpserverMaybe 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