mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-10-01 03:15:44 -04:00
Added link age to link API
This commit is contained in:
parent
f1d6cda337
commit
6ac07989b0
@ -462,6 +462,15 @@ class Link:
|
|||||||
def get_context(self):
|
def get_context(self):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
def get_age(self):
|
||||||
|
"""
|
||||||
|
:returns: The time in seconds since this link was established.
|
||||||
|
"""
|
||||||
|
if self.activated_at:
|
||||||
|
return time.time() - self.activated_at
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
def no_inbound_for(self):
|
def no_inbound_for(self):
|
||||||
"""
|
"""
|
||||||
:returns: The time in seconds since last inbound packet on the link. This includes keepalive packets.
|
:returns: The time in seconds since last inbound packet on the link. This includes keepalive packets.
|
||||||
|
Loading…
Reference in New Issue
Block a user