This commit is contained in:
jdl
2026-06-07 20:30:31 +02:00
parent 747d73890f
commit 3877ec5f35
15 changed files with 173 additions and 80 deletions

View File

@@ -2,7 +2,8 @@
package m
type PeerInitArgs struct {
WGPubKey []byte
WGPubKey []byte
SignPubKey []byte
}
type PeerInitResp struct {
@@ -18,8 +19,9 @@ type Peer struct {
Addr4 []byte
Addr6 []byte
Port uint16
Relay bool
WGPubKey []byte
Relay bool
WGPubKey []byte
SignPubKey []byte
}
type NetworkState struct {