Class: Fluent::TextParser::NetflowParser::MplsLabel
- Inherits:
-
BinData::Primitive
- Object
- BinData::Primitive
- Fluent::TextParser::NetflowParser::MplsLabel
- Defined in:
- lib/fluent/plugin/parser_netflow.rb
Instance Method Summary collapse
Instance Method Details
#get ⇒ Object
303 304 305 |
# File 'lib/fluent/plugin/parser_netflow.rb', line 303 def get self.label end |
#set(val) ⇒ Object
298 299 300 301 302 |
# File 'lib/fluent/plugin/parser_netflow.rb', line 298 def set(val) self.label = val >> 4 self.exp = (val & 0b1111) >> 1 self.bottom = val & 0b1 end |