implement new router system in server

This commit is contained in:
Bastian Schroll 2019-03-02 09:17:20 +01:00
parent 3fa10911c9
commit 39d88f3e3d
4 changed files with 53 additions and 32 deletions

View file

@ -56,7 +56,6 @@ except: # pragma: no cover
try:
header.logoToLog()
header.infoToLog()
header.logoToScreen()
logging.debug("parse args")
# With -h or --help you get the Args help
@ -102,7 +101,7 @@ try:
if bwPacket:
bwPacket.printInfo()
bwPacket.addClientData()
bwPacket.addClientData(bwConfig)
bwClient.transmit(str(bwPacket))
# todo should we do this in an thread, to not block receiving ??? but then we should use transmit() and receive() with Lock()