mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-05-13 03:42:45 -04:00
Added gateway interface mode
This commit is contained in:
parent
02bb9068cc
commit
81b92ffdc1
2 changed files with 10 additions and 0 deletions
|
@ -31,11 +31,17 @@ class Interface:
|
|||
RPT = False
|
||||
name = None
|
||||
|
||||
# Interface mode definitions
|
||||
MODE_FULL = 0x01
|
||||
MODE_POINT_TO_POINT = 0x02
|
||||
MODE_ACCESS_POINT = 0x03
|
||||
MODE_ROAMING = 0x04
|
||||
MODE_BOUNDARY = 0x05
|
||||
MODE_GATEWAY = 0x06
|
||||
|
||||
# Which interface modes a Transport Node
|
||||
# must act as path request agent for.
|
||||
PATH_REQUEST_AGENT_FOR = [MODE_ACCESS_POINT, MODE_GATEWAY]
|
||||
|
||||
def __init__(self):
|
||||
self.rxb = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue