Top "Tcplistener" questions

.NET Framework Class that listens for connections from TCP network clients.

How to let kernel choose a port number in the range (1024,5000) in TCP socket programming

When I run the following code: struct sockaddr_in sin; int addrlen; addrlen=sizeof(sin); memset(&sin, 0, sizeof(sin)); …

sockets kernel tcpclient tcplistener
C# TCP/IP simple chat with multiple-clients

I'm learning c# socket programming. So, I decided to make a TCP chat, the basic idea is that A client …

c# sockets tcp chat tcplistener
c# how to connect multiple clients to a TcpListener

I am implementing a game in a WPF application. I need to connect at least 10 players to a server. I …

sockets tcpclient tcplistener connection
C# Listen TCP Port

I want to listen a TCP port. The scenario: SIP server, and client-program. The SIP server may use port 5010 to …

c# tcp tcplistener
Serializing object ready to send over TCPClient Stream

I've got a server and client set up using TcpListener and TcpClient. I want to send an object to my …

c# serialization tcp tcpclient tcplistener
How to check if a specific port is listening using Python script?

I want to check if api and app are running before running tests on them. I know I can get …

python tcp port tcplistener python-sockets
reading from sys.stdin without newline or EOF

I want to recieve data from my gps-tracker. It sends data by tcp, so I use xinetd to listen some …

python tcp tcplistener xinetd
Right approach for asynchronous TcpListener using async/await

I have been thinking about what is the right way of set up a TCP server by using asynchronous programming. …

c# asynchronous threadpool async-await tcplistener
C# - an established connection was aborted by the software in your host machine Error

I am building a Mock Server using TCPListener. When I tried to debug my code by running the client, I …

c# sockets tcpclient tcplistener
TCP IP Listener in windows Service

I'm trying to create a windows service that needs to run in the background and listen for incoming traffic (a …

c# windows-services tcpclient tcplistener installutil