diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-04-27 16:27:17 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-04-27 16:27:17 +0200 |
commit | 613be40b15d8e645a188a003b2b125b2e3aced8b (patch) | |
tree | 35b6249f7c392e3c49def91d0d3688974e4461fa /pkt_buff.h | |
parent | d312a25879d5826ff1ca638410bbd36ba2619d93 (diff) |
pkt_buff: Change type of link_type field
The link type is handled as uint32_t in the rest of the code base so use
that type here as well.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'pkt_buff.h')
-rw-r--r-- | pkt_buff.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ struct pkt_buff { unsigned int size; struct protocol *handler; - int link_type; + uint32_t link_type; uint16_t proto; }; |