What do I need to research to find out how to send packets from a client machine to a server?
Printable View
What do I need to research to find out how to send packets from a client machine to a server?
Computers uses sockets to send and receive data in a network. The .NET framework has implemented socket functionallity in the System.Net.Sockets.Socket class, and in the easier-to-use classes System.Net.Sockets.TcpClient and System.Net.Sockets.TcpListener if you're going for TCP and System.Net.Sockets.UdpClient if you're going for UDP.