mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-05-09 17:45:04 -04:00
Added transport encryption indicators to messages
This commit is contained in:
parent
ab27f17ea9
commit
9a0c4ea6a8
2 changed files with 19 additions and 1 deletions
|
@ -229,6 +229,18 @@ class ConversationMessage:
|
|||
|
||||
return self.lxm.state
|
||||
|
||||
def get_transport_encryption(self):
|
||||
if not self.loaded:
|
||||
self.load()
|
||||
|
||||
return self.lxm.transport_encryption
|
||||
|
||||
def get_transport_encrypted(self):
|
||||
if not self.loaded:
|
||||
self.load()
|
||||
|
||||
return self.lxm.transport_encrypted
|
||||
|
||||
def signature_validated(self):
|
||||
if not self.loaded:
|
||||
self.load()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue