diff options
Diffstat (limited to 'src/routing.go')
-rw-r--r-- | src/routing.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/routing.go b/src/routing.go new file mode 100644 index 0000000..99b180c --- /dev/null +++ b/src/routing.go @@ -0,0 +1,22 @@ +package main + +import ( + "sync" +) + +/* Thread-safe high level functions for cryptkey routing. + * + */ + +type RoutingTable struct { + IPv4 *Trie + IPv6 *Trie + mutex sync.RWMutex +} + +func (table *RoutingTable) RemovePeer(peer *Peer) { + table.mutex.Lock() + defer table.mutex.Unlock() + table.IPv4 = table.IPv4.RemovePeer(peer) + table.IPv6 = table.IPv6.RemovePeer(peer) +} |