Basic interface rate estimation

This commit is contained in:
Mark Qvist 2022-04-17 19:07:32 +02:00
parent 7923322d92
commit 2f71296816
5 changed files with 49 additions and 5 deletions

View file

@ -76,6 +76,7 @@ class LocalClientInterface(Interface):
self.connect()
self.owner = owner
self.bitrate = 1000*1000*1000
self.online = True
self.writing = False
@ -284,6 +285,7 @@ class LocalServerInterface(Interface):
thread.setDaemon(True)
thread.start()
self.bitrate = 1000*1000*1000
self.online = True