mirror of
https://github.com/syncthing/syncthing.git
synced 2024-11-18 03:18:57 -07:00
14 lines
223 B
Go
14 lines
223 B
Go
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
|
|
package main
|
|
|
|
type address struct {
|
|
ip []byte
|
|
port uint16
|
|
seen int64 // epoch seconds
|
|
}
|
|
|
|
type addressList struct {
|
|
addresses []address
|
|
}
|