aboutsummaryrefslogtreecommitdiff
path: root/src/keypair.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-02 15:28:38 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-02 15:28:38 +0200
commit2aa0daf4d58ffc930fde611e7efe6ae3c9515130 (patch)
treed99a2a65be02ab3b6d4a965ab4f1d6165a981549 /src/keypair.go
parent1e620427bd01b1e897c57752359f7dbb28e34bff (diff)
downloadwireguard-go-2aa0daf4d58ffc930fde611e7efe6ae3c9515130.tar.gz
wireguard-go-2aa0daf4d58ffc930fde611e7efe6ae3c9515130.zip
Fixed transport header problem
Diffstat (limited to '')
-rw-r--r--src/keypair.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keypair.go b/src/keypair.go
index 0e845f7..0fac5cb 100644
--- a/src/keypair.go
+++ b/src/keypair.go
@@ -13,7 +13,8 @@ type KeyPair struct {
sendNonce uint64
isInitiator bool
created time.Time
- id uint32
+ localIndex uint32
+ remoteIndex uint32
}
type KeyPairs struct {