flowtop: Remove unused parameters from draw_help() and draw_footer()
[netsniff-ng.git] / vlan.h
blobb58d1a26f20e224d0a6a2960f140118ccf643bf9
1 #ifndef VLAN_H
2 #define VLAN_H
4 #include <stdbool.h>
5 #include <inttypes.h>
7 static inline uint16_t vlan_tci2prio(uint16_t tci)
9 return (tci & 0xe000) >> 13;
12 static inline uint16_t vlan_tci2cfi(uint16_t tci)
14 return (tci & 0x1000) >> 12;
17 static inline uint16_t vlan_tci2vid(uint16_t tci)
19 return tci & 0x0fff;
22 #endif