2015-07-10 14:20:10 +00:00
|
|
|
package SystemMessages
|
|
|
|
|
|
|
|
// Requests the version from a Ocean server
|
|
|
|
type ICCCGetVersion struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Answer to the version request
|
|
|
|
type ICCCGetVersionAnswer struct {
|
2015-07-13 08:44:03 +00:00
|
|
|
Kind byte // Ocean || Component
|
2015-07-10 14:20:10 +00:00
|
|
|
Name string // Ocean: Hostname; Components: Name
|
|
|
|
Version string // The current version
|
|
|
|
}
|