ProofServer.java 627 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
package network.server;

import java.net.ServerSocket;
import java.net.Socket;
import java.io.IOException;



public class ProofServer {
public static void main(String[] args) {
new ProofServer();
}
ProofServer(){

try {

ServerSocket s = new ServerSocket(2525);

while (true) {

System.out.println("Waiting clients...");

Socket conexao = s.accept();

System.out.println("A new client was conected!");

Thread t = new Control(conexao);

t.start();

}

}

catch (IOException e) {
System.out.println("IOException: " + e);

}
}

}