if(!do_decrement_ttl(source, packet))
return;
+ if(priorityinheritance)
+ packet->priority = ((packet->data[14] & 0x0f) << 4) | (packet->data[15] >> 4);
+
via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
if(via == source) {
uint16_t type = packet->data[12] << 8 | packet->data[13];
- if(priorityinheritance && type == ETH_P_IP && packet->len >= ether_size + ip_size)
- packet->priority = packet->data[15];
+ if(priorityinheritance) {
+ if(type == ETH_P_IP && packet->len >= ether_size + ip_size)
+ packet->priority = packet->data[15];
+ else if(type == ETH_P_IPV6 && packet->len >= ether_size + ip6_size)
+ packet->priority = ((packet->data[14] & 0x0f) << 4) | (packet->data[15] >> 4);
+ }
// Handle packets larger than PMTU