RMCPClass is the class of a RMCP layer's payload, e.g. ASF or IPMI. This is a 4-bit unsigned int on the wire; all but 6 (ASF), 7 (IPMI) and 8 (OEM-defined) are currently reserved.
| 18 | // 4-bit unsigned int on the wire; all but 6 (ASF), 7 (IPMI) and 8 (OEM-defined) |
| 19 | // are currently reserved. |
| 20 | type RMCPClass uint8 |
| 21 | |
| 22 | // LayerType returns the payload layer type corresponding to a RMCP class. |
| 23 | func (c RMCPClass) LayerType() gopacket.LayerType { |