v2 CopterController stuff. compiles, untested

This commit is contained in:
2015-03-03 23:43:50 -07:00
parent ad72a19c36
commit 4405f009b4
13 changed files with 688 additions and 22 deletions

View File

@@ -15,7 +15,9 @@ class Server {
try {
System.out.print( "Setting up server\n" );
srvr = new ServerSocket( 51717 );
srvr = new ServerSocket( Integer.parseInt( args[0] ) );
System.out.println( srvr.getInetAddress() );
System.out.println( srvr.getLocalPort() );
skt = srvr.accept();
System.out.print( "Server has connected!\n" );