summaryrefslogtreecommitdiff
path: root/pkt_buff.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-04-27 16:27:17 +0200
committerTobias Klauser <tklauser@distanz.ch>2015-04-27 16:27:17 +0200
commit613be40b15d8e645a188a003b2b125b2e3aced8b (patch)
tree35b6249f7c392e3c49def91d0d3688974e4461fa /pkt_buff.h
parentd312a25879d5826ff1ca638410bbd36ba2619d93 (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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkt_buff.h b/pkt_buff.h
index 58b0506..e044f66 100644
--- a/pkt_buff.h
+++ b/pkt_buff.h
@@ -20,7 +20,7 @@ struct pkt_buff {
unsigned int size;
struct protocol *handler;
- int link_type;
+ uint32_t link_type;
uint16_t proto;
};