forked from elmehdilaagad/Mini-application-of-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServeur.java
executable file
·52 lines (37 loc) · 810 Bytes
/
Serveur.java
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
45
46
47
48
49
50
51
52
import java.net.ServerSocket;
import java.net.Socket;
import java.util.Vector;
public class Serveur extends Thread {
private static int PORT = 1027;
private ServerSocket srvSocket;
private Socket clientSocket;
private static Vector<Connexion> L = new Vector<Connexion>();
public void run(){
try {
srvSocket = new ServerSocket(PORT);
while(true){
clientSocket = srvSocket.accept();
Connexion c = new Connexion(clientSocket);
L.add(c);
c.start();
}
}catch (Exception e) {
e.printStackTrace();
}
}
public Serveur() {
}
public static Vector<Connexion> getAll(){
return L;
}
public static void main(String[] args) {
try {
new Serveur().start() ;
} catch (Exception e) {
e.printStackTrace();
}
}
public int getPort() {
return PORT;
}
}