syncthing/cmd/discosrv/types.go

14 lines
223 B
Go
Raw Normal View History

2014-09-08 09:48:26 +00:00
// 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
}