mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-22 13:40:19 +00:00
Updated link example
This commit is contained in:
parent
f880edbeb8
commit
e8fb435f00
@ -181,8 +181,18 @@ def client_loop():
|
|||||||
# If not, send the entered text over the link
|
# If not, send the entered text over the link
|
||||||
if text != "":
|
if text != "":
|
||||||
data = text.encode("utf-8")
|
data = text.encode("utf-8")
|
||||||
|
if len(data) <= RNS.Link.MDU:
|
||||||
RNS.Packet(server_link, data).send()
|
RNS.Packet(server_link, data).send()
|
||||||
|
else:
|
||||||
|
RNS.log(
|
||||||
|
"Cannot send this packet, the data size of "+
|
||||||
|
str(len(data))+" bytes exceeds the link packet MDU of "+
|
||||||
|
str(RNS.Link.MDU)+" bytes",
|
||||||
|
RNS.LOG_ERROR
|
||||||
|
)
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
RNS.log("Error while sending data over the link: "+str(e))
|
||||||
should_quit = True
|
should_quit = True
|
||||||
server_link.teardown()
|
server_link.teardown()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user