Ocean/ICCC/SystemMessages/ICCCGetHosts.go

12 lines
225 B
Go
Raw Normal View History

package SystemMessages
// A message to request the known ICCC hosts.
type ICCCGetHosts struct {
}
// The answer to the hosts request.
type ICCCGetHostsAnswer struct {
Hostnames []string
IPAddressesPorts []string
}