Files
syncthing-arm/cmd/discosrv/types.go
Jakob Borg 51eea3f90b GPL->MIT
2015-03-25 08:07:33 +01:00

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
}