6e111b7517
+ 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
11 lines
202 B
Go
11 lines
202 B
Go
package SystemMessages
|
|
|
|
// The message to request a new number from NumGen package.
|
|
type ICCCNumGenNext struct {
|
|
}
|
|
|
|
// The response to the Numgen request.
|
|
type ICCCAnswerNumGen struct {
|
|
Number int64
|
|
}
|