Paul Klumpp 12 anni fa
parent
commit
4b86bdf22d
1 ha cambiato i file con 1 aggiunte e 4 eliminazioni
  1. 1 4
      em_server.rb

+ 1 - 4
em_server.rb

@@ -291,9 +291,6 @@ module InterconnectionPointProtocolHandler
 		
 	
 	
-	
-	
-	
 	# default method that is being run on receiving data!
 	def receive_data(data) # connection receives a line on the server end
 		
@@ -346,7 +343,7 @@ def main
 
 	# #run: Note that this will block current thread.
 	EventMachine.run {
-		EventMachine.start_server "0.0.0.0", 7338, InterconnectionPointProtocolHandler
+		EventMachine.start_server "0.0.0.0", 7337, InterconnectionPointProtocolHandler
 	}
 end