diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2024-08-16 23:29:59 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2024-08-16 23:29:59 +0200 |
commit | d14c230f63617bb5fe84414723c10842fc029a3c (patch) | |
tree | 611d286d27f6605bb7b63667f221ccc7f7b19495 /src/daemon_config.rs | |
parent | 9c9039bdcd3f829ff0cfee5153b0435e0d209114 (diff) | |
download | maesch-d14c230f63617bb5fe84414723c10842fc029a3c.tar maesch-d14c230f63617bb5fe84414723c10842fc029a3c.tar.bz2 maesch-d14c230f63617bb5fe84414723c10842fc029a3c.tar.zst |
add AddPeer
Diffstat (limited to 'src/daemon_config.rs')
-rw-r--r-- | src/daemon_config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon_config.rs b/src/daemon_config.rs index 246a736..559c9d0 100644 --- a/src/daemon_config.rs +++ b/src/daemon_config.rs @@ -30,7 +30,7 @@ pub struct PeerConfig { pub endpoint: Option<Endpoint>, pub last_changed: SystemTime, - pub known_to: Vec<usize>, + pub known_to: Vec<Key>, pub mäsch_endpoint: SocketAddr, } |