Questions tagged [tcpserver]

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

A TCP server is a server that uses raw tcp sockets for the connection. All HTTP Servers are tcp servers in the end but usually you don't call them tcp servers because they work on a higher level protocol: HTTP.

680 questions
-3
votes
2 answers

TCP server- connection handling

I have an application in C# that is a TCP server listening to a port. GPS devices connect to this port. The application is accepting the TCP client and creating a new thread for each client. The client ID in maintained in a hash table that is…
Jonathan
  • 23
  • 5
-4
votes
1 answer

Tcpclient/Tcpserver Multithread

I try to create a multithreaded server for getting reports about the usage, but I can not make the client connect to the server. Can you please have a look and explain to me why ? I do not want any piece of code! Here is the server's communication…
-5
votes
1 answer

C# tcp server client

Okay so I have a tcp running on port 1302. I've port forwarded the servers IP on my router. But how would the client and server send messages to each other... Wouldn't the client have to port forward too. If so, is there any way around this?
-5
votes
1 answer

Conecting TCP client (on linux/c++) to TCP server (on windows c#)

Possible Duplicate: Connection from linux to windows via tcp I have a TCP client on windows/c# and another one on linux/c++ Also I have a TCP server on both. My TCP client on windows/c# works ok, the problem is the TCP client on linux/c++ when I…
1 2 3
45
46