How to receive the data from the client, bypassing the standard class function Protocol? For example,
class TW(protocol.Protocol):
def get_data(delim = '\n'):
#some code
return data
I.e, without using the function "dataReceived", and not freezing all other the server clients?