src/devices/wifi/qos-utils.cc
changeset 5774 0fad665ff307
parent 5143 8b5055542351
child 5956 e9918be47f78
equal deleted inserted replaced
5770:bb1eea10412f 5774:0fad665ff307
    59 {
    59 {
    60   QosTag qos;
    60   QosTag qos;
    61   uint8_t tid = 8;
    61   uint8_t tid = 8;
    62   if (packet->PeekPacketTag (qos))
    62   if (packet->PeekPacketTag (qos))
    63     {
    63     {
    64       if (qos.Get () < 8)
    64       if (qos.GetTid () < 8)
    65         {
    65         {
    66           tid = qos.Get ();
    66           tid = qos.GetTid ();
    67         }
    67         }
    68     }
    68     }
    69   return tid;
    69   return tid;
    70 }
    70 }
    71 
    71