2015-07-09 18:19:01 +00:00
|
|
|
package SystemMessages
|
|
|
|
|
|
|
|
// Message type for the startup message of Ocean's servers:
|
|
|
|
type ICCCOceanStartUpMessage struct {
|
|
|
|
PublicIPAddressPort string // The public web server's IP address and port
|
|
|
|
AdminIPAddressPort string // The private admin server's IP address and port
|
2015-07-10 14:20:10 +00:00
|
|
|
OceanVersion string // The current version of this server
|
2015-07-09 18:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Message type for a startup message for external components:
|
|
|
|
type ICCCComponentStartUpMessage struct {
|
|
|
|
IPAddressPort string // The component's ICCC IP address and port
|
2015-07-10 14:20:10 +00:00
|
|
|
Name string // What is the name of this component?
|
|
|
|
Version string // Which version is used?
|
2015-07-09 18:19:01 +00:00
|
|
|
}
|