in server/coscel/cos_tlv.go [59:69]
func (c COSTLV) TLV() (cel.TLV, error) {
data, err := cel.TLV{uint8(c.EventType), c.EventContent}.MarshalBinary()
if err != nil {
return cel.TLV{}, err
}
return cel.TLV{
Type: CELRType,
Value: data,
}, nil
}