()
| 93 | type SFlowDataSource int32 |
| 94 | |
| 95 | func (sdc SFlowDataSource) decode() (SFlowSourceFormat, SFlowSourceValue) { |
| 96 | leftField := sdc >> 30 |
| 97 | rightField := uint32(0x3FFFFFFF) & uint32(sdc) |
| 98 | return SFlowSourceFormat(leftField), SFlowSourceValue(rightField) |
| 99 | } |
| 100 | |
| 101 | type SFlowDataSourceExpanded struct { |
| 102 | SourceIDClass SFlowSourceFormat |
no test coverage detected