aboutsummaryrefslogtreecommitdiff
path: root/src/keypair.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/keypair.go')
-rw-r--r--src/keypair.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/keypair.go b/src/keypair.go
index b24dbe4..b5f46df 100644
--- a/src/keypair.go
+++ b/src/keypair.go
@@ -7,13 +7,14 @@ import (
)
type KeyPair struct {
- receive cipher.AEAD
- send cipher.AEAD
- sendNonce uint64
- isInitiator bool
- created time.Time
- localIndex uint32
- remoteIndex uint32
+ receive cipher.AEAD
+ replayFilter ReplayFilter
+ send cipher.AEAD
+ sendNonce uint64
+ isInitiator bool
+ created time.Time
+ localIndex uint32
+ remoteIndex uint32
}
type KeyPairs struct {