diff options
author | Mathias Hall-Andersen <mathias@hall-andersen.dk> | 2017-05-30 22:36:49 +0200 |
---|---|---|
committer | Mathias Hall-Andersen <mathias@hall-andersen.dk> | 2017-05-30 22:36:49 +0200 |
commit | 1eebdf88a320824b8f155caa1d5c725c38d51de8 (patch) | |
tree | c405eff6416526a6627afa84291fa27660148f1a /src/device.go | |
parent | 6bd0b2fbe220a23c2370ebda01f7968d3bea0118 (diff) |
Beginning work on UAPI and routing table
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 +} |