mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-06-24 22:50:34 -04:00
Refactored processOutgoing to process_outgoing
This commit is contained in:
parent
4a4b625075
commit
36c761e8dd
16 changed files with 33 additions and 33 deletions
|
@ -291,7 +291,7 @@ class TCPClientInterface(Interface):
|
|||
|
||||
self.owner.inbound(data, self)
|
||||
|
||||
def processOutgoing(self, data):
|
||||
def process_outgoing(self, data):
|
||||
if self.online:
|
||||
# while self.writing:
|
||||
# time.sleep(0.01)
|
||||
|
@ -593,7 +593,7 @@ class TCPServerInterface(Interface):
|
|||
def sent_announce(self, from_spawned=False):
|
||||
if from_spawned: self.oa_freq_deque.append(time.time())
|
||||
|
||||
def processOutgoing(self, data):
|
||||
def process_outgoing(self, data):
|
||||
pass
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue