Cooperation/CooperationServer.py

changeset 3591
2f2a4a76dd22
parent 3178
f25fc1364c88
child 3656
441956d8fce5
equal deleted inserted replaced
3590:5280e37405b8 3591:2f2a4a76dd22
37 37
38 self.__address = address 38 self.__address = address
39 39
40 def incomingConnection(self, socketDescriptor): 40 def incomingConnection(self, socketDescriptor):
41 """ 41 """
42 Protected method handling an incoming connection. 42 Public method handling an incoming connection.
43 43
44 @param socketDescriptor native socket descriptor (integer) 44 @param socketDescriptor native socket descriptor (integer)
45 """ 45 """
46 connection = Connection(self) 46 connection = Connection(self)
47 connection.setSocketDescriptor(socketDescriptor) 47 connection.setSocketDescriptor(socketDescriptor)

eric ide

mercurial