Reticulum/RNS/Interfaces/Interface.py

23 lines
423 B
Python
Raw Normal View History

import RNS
2016-06-03 17:02:02 +00:00
class Interface:
IN = False
OUT = False
FWD = False
RPT = False
name = None
2022-02-25 17:47:55 +00:00
MODE_FULL = 0x01
MODE_POINT_TO_POINT = 0x02
MODE_ACCESS_POINT = 0x03
2016-06-03 17:02:02 +00:00
def __init__(self):
2021-09-24 18:10:04 +00:00
self.rxb = 0
self.txb = 0
self.online = False
def get_hash(self):
return RNS.Identity.full_hash(str(self).encode("utf-8"))
def detach(self):
pass