mirror of
https://github.com/markqvist/Reticulum.git
synced 2026-09-01 01:37:32 +00:00
Method naming
This commit is contained in:
parent
c95bb551ab
commit
db7daa4d94
1 changed files with 2 additions and 2 deletions
|
|
@ -1533,13 +1533,13 @@ class Transport:
|
|||
|
||||
@staticmethod
|
||||
def inbound(raw, interface=None, tc=None):
|
||||
try: Transport.process_inbound(raw, interface, tc)
|
||||
try: Transport.preprocess_inbound(raw, interface, tc)
|
||||
except Exception as e:
|
||||
RNS.log(f"Error while processing inbound on {interface}: {e}", RNS.LOG_ERROR)
|
||||
RNS.trace_exception(e)
|
||||
|
||||
@staticmethod
|
||||
def process_inbound(raw, interface=None, tc=None):
|
||||
def preprocess_inbound(raw, interface=None, tc=None):
|
||||
if not Transport.ready:
|
||||
wait_start = time.time()
|
||||
while not Transport.ready:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue