Ocean/ICCC/SystemMessages/ICCCNumGen.go
Thorsten Sommer 6e111b7517 Added more ICCC commands
+ 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
2015-06-21 21:28:39 +02:00

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
}