Subversion Repositories programming

Rev

Rev 222 | Rev 224 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 222 Rev 223
Line 31... Line 31...
31
        {
31
        {
32
            System.err.println ("Could not listen on port: " + portNumber);
32
            System.err.println ("Could not listen on port: " + portNumber);
33
            System.exit (1);
33
            System.exit (1);
34
        }
34
        }
35
 
35
 
-
 
36
        System.out.println ("Listening for connections on port: " + portNumber);
-
 
37
        
36
        while (listening)
38
        while (listening)
37
        {
39
        {
38
            new P3_ServerThread (socket.accept(), table).start();
40
            new P3_ServerThread (socket.accept(), table).start();
39
        }
41
        }
40
 
42