Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 983 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 983 Bytes

UDPServer

SKJ (pl. Computer Networks and Network Programming in Java) project of UDP server.

How it works

  1. The class TCPClient has been created to send requests to the TCP server. Determine the address and port of the server to which requests will be sent. For example:
TCPClient tcpClient = new TCPClient("172.21.48.26", 16777);
  1. Since we know at what address and port is the server, we should in turn send a request to it:
tcpClient.sendTCP("asd");
  1. After sending a request to TCP server we should define exactly the same for our UDP server, i.e. we have to determine on what address and port our UDP server will be defined, e.g:
try {
    new UDPServer("172.0.0.1", 27684).listen();
} catch (SocketException e) {
    System.out.println("Could not set up the server");
}

Once the above server UDP is defined, it will be started. A given UDP server is defined based on threads, that is, it is able to serve several clients at once.