Clean up the code a little bit

This commit is contained in:
Fred Z 2018-03-08 18:08:43 +01:00
parent ffe3023b4d
commit 91c5bdb761
1 changed files with 11 additions and 9 deletions

View File

@ -37,17 +37,19 @@ class ConnectSocket:
>>> c0.list_sockets()
"""
# default connection parameters
_HOST = 'localhost'
_PORT = 5555
_BUFFER = 1024
_SERVER_LOG = "{}:{}|{name}|{msg}"
# Template messages
_MSG_DISCONNECTED = "<gone away to infinity, and beyond>"
_MSG_SALUTE = "Hi, {}, wait for other players\n"
_MSG_SERVER_STOP = "Server stop"
_MSG_START_SERVER = "Server is running, listening on port {}"
_MSG_USER_IN = "<entered the chatroom>"
_MSG_WELCOME = "Welcome"
_MSG_SALUTE = "Hi, {}, everyone is listening to you:"
_MSG_USER_IN = "<entered the network>"
_MSG_WELCOME = "Welcome. First do something usefull and type your name: "
_SERVER_LOG = "{}:{}|{name}|{msg}"
def __init__(self, named=False, host=_HOST, port=_PORT):
""" Set up the connection """
@ -96,6 +98,10 @@ class ConnectSocket:
self._CONNECTION.close()
print(self._MSG_SERVER_STOP)
def count_clients(self):
""" Count connected clients"""
return len(self._inputs) - 1
def list_sockets(self, print_it=True):
""" List connected sckts """
if print_it:
@ -109,10 +115,6 @@ class ConnectSocket:
else:
return self._inputs
def count_clients(self):
""" Count connected clients"""
return len(self._inputs) - 1
def listen(self):
"""
Listen sockets activity