+ Added ICCC command for register a host + Added ICCC command for register a command i.e. listener + Added ICCC command for getting a number from NumGen
10 lines
339 B
Go
10 lines
339 B
Go
package SystemMessages
|
|
|
|
// The message to register a command/listener to ICCC.
|
|
type ICCCRegisterListener struct {
|
|
Channel string // The channel for the provided command
|
|
Command string // The provided command
|
|
IsActive bool // Is the command active?
|
|
IPAddressPort string // The IP address and port for the end-point
|
|
}
|