aboutsummaryrefslogtreecommitdiffstats
path: root/core/control_ping.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/control_ping.go')
-rw-r--r--core/control_ping.go24
1 files changed, 6 insertions, 18 deletions
diff --git a/core/control_ping.go b/core/control_ping.go
index b39fd3f..ed8d274 100644
--- a/core/control_ping.go
+++ b/core/control_ping.go
@@ -21,15 +21,9 @@ func SetControlPingReply(m api.Message) {
type ControlPing struct{}
-func (*ControlPing) GetMessageName() string {
- return "control_ping"
-}
-func (*ControlPing) GetCrcString() string {
- return "51077d14"
-}
-func (*ControlPing) GetMessageType() api.MessageType {
- return api.RequestMessage
-}
+func (*ControlPing) GetMessageName() string { return "control_ping" }
+func (*ControlPing) GetCrcString() string { return "51077d14" }
+func (*ControlPing) GetMessageType() api.MessageType { return api.RequestMessage }
type ControlPingReply struct {
Retval int32
@@ -37,15 +31,9 @@ type ControlPingReply struct {
VpePID uint32
}
-func (*ControlPingReply) GetMessageName() string {
- return "control_ping_reply"
-}
-func (*ControlPingReply) GetCrcString() string {
- return "f6b0b8ca"
-}
-func (*ControlPingReply) GetMessageType() api.MessageType {
- return api.ReplyMessage
-}
+func (*ControlPingReply) GetMessageName() string { return "control_ping_reply" }
+func (*ControlPingReply) GetCrcString() string { return "f6b0b8ca" }
+func (*ControlPingReply) GetMessageType() api.MessageType { return api.ReplyMessage }
func init() {
api.RegisterMessage((*ControlPing)(nil), "ControlPing")