diff --git a/pkg/dmsg/frame.go b/pkg/dmsg/frame.go index d3c2f31ace..4f7423a09d 100644 --- a/pkg/dmsg/frame.go +++ b/pkg/dmsg/frame.go @@ -52,6 +52,7 @@ func (ft FrameType) String() string { CloseType: "CLOSE", FwdType: "FWD", AckType: "ACK", + OkType: "OK", } if int(ft) >= len(names) { return fmt.Sprintf("UNKNOWN:%d", ft) @@ -66,6 +67,7 @@ const ( CloseType = FrameType(0x3) FwdType = FrameType(0xa) AckType = FrameType(0xb) + OkType = FrameType(0xc) ) // Frame is the dmsg data unit.