2015-07-10 12:36:47 +00:00
|
|
|
package SystemMessages
|
|
|
|
|
|
|
|
// A message to request the known ICCC listeners.
|
|
|
|
type ICCCGetListeners struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// The answer to the listeners request.
|
|
|
|
type ICCCGetListenersAnswer struct {
|
|
|
|
Channels []string
|
|
|
|
Commands []string
|
|
|
|
IPAddressesPorts []string
|
2015-07-13 08:44:03 +00:00
|
|
|
Kinds []byte
|
2015-07-10 12:36:47 +00:00
|
|
|
}
|