diff options
Diffstat (limited to 'src/device.go')
-rw-r--r-- | src/device.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/device.go b/src/device.go new file mode 100644 index 0000000..cd0835c --- /dev/null +++ b/src/device.go @@ -0,0 +1,14 @@ +package main + +import ( + "sync" +) + +type Device struct { + mutex sync.RWMutex + peers map[NoisePublicKey]*Peer + privateKey NoisePrivateKey + publicKey NoisePublicKey + fwMark uint32 + listenPort uint16 +} |