12 lines
225 B
Go
12 lines
225 B
Go
|
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
|
||
|
}
|