]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/cypherpunks.ru/govpn/client/tcp.go
Raise copyright years
[govpn.git] / src / cypherpunks.ru / govpn / client / tcp.go
index c57b07ae270c44473750caea610b0853f4de7232..4c16b707b6b8bcf61b742d2acd10ff80c5248ad5 100644 (file)
@@ -1,6 +1,6 @@
 /*
 GoVPN -- simple secure free software virtual private network daemon
-Copyright (C) 2014-2017 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2014-2018 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -76,8 +76,8 @@ HandshakeCycle:
                }
 
                prev += n
-               peerId := c.idsCache.Find(buf[:prev])
-               if peerId == nil {
+               peerID := c.idsCache.Find(buf[:prev])
+               if peerID == nil {
                        continue
                }
                peer = hs.Client(buf[:prev])
@@ -86,7 +86,7 @@ HandshakeCycle:
                        continue
                }
                govpn.Printf(`[handshake-completed remote="%s"]`, c.config.RemoteAddress)
-               c.knownPeers = govpn.KnownPeers(map[string]**govpn.Peer{c.config.RemoteAddress: &peer})
+               c.knownPeers.Store(c.config.RemoteAddress, &peer)
                if c.firstUpCall {
                        go govpn.ScriptCall(c.config.UpPath, c.config.InterfaceName, c.config.RemoteAddress)
                        c.firstUpCall = false