mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-14 01:04:14 +00:00
16 lines
349 B
Go
16 lines
349 B
Go
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
type address struct {
|
|
ip []byte
|
|
port uint16
|
|
seen int64 // epoch seconds
|
|
}
|
|
|
|
type addressList struct {
|
|
addresses []address
|
|
}
|