mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-05 13:50:14 +00:00
17 lines
342 B
Python
Executable File
17 lines
342 B
Python
Executable File
import FPE
|
|
|
|
class Transport:
|
|
# Constants
|
|
BROADCAST = 0x00;
|
|
TRANSPORT = 0x01;
|
|
RELAY = 0x02;
|
|
TUNNEL = 0x03;
|
|
types = [BROADCAST, TRANSPORT, RELAY, TUNNEL]
|
|
|
|
@staticmethod
|
|
def outbound(raw):
|
|
FPE.FlexPE.outbound(raw)
|
|
|
|
@staticmethod
|
|
def registerDestination(destination):
|
|
FPE.FlexPE.addDestination(destination) |