diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2016-01-29 14:12:01 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2016-01-29 14:19:47 +0100 |
commit | 2ba202b8320cbec32520d347ac256c2b4caf0458 (patch) | |
tree | 1e1be887468c3a4d5a769f5d1f838537fff86d0c /trafgen_l3.c | |
parent | 56ce71c166cdfeab7cb503d538fd176ec4548e05 (diff) |
trafgen: parser: Support "etype"/"type" keywords for Ethertype
The IEEE 802.3 standard commonly refers to the field specifying the
upper layer protocol as Ethertype, not protocol. Thus, also support the
keywords "etype" and "type" for this field.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'trafgen_l3.c')
-rw-r--r-- | trafgen_l3.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/trafgen_l3.c b/trafgen_l3.c index dd45395..1771908 100644 --- a/trafgen_l3.c +++ b/trafgen_l3.c @@ -38,9 +38,8 @@ static void ipv4_header_init(struct proto_hdr *hdr) proto_lower_default_add(PROTO_ETH); lower = proto_current_header(); - if (lower->id == PROTO_ETH) - proto_field_set_default_be16(lower, ETH_PROTO_ID, ETH_P_IP); + proto_field_set_default_be16(lower, ETH_TYPE, ETH_P_IP); else if (lower->id == PROTO_IP4) proto_field_set_default_u8(lower, IP4_PROTO, IPPROTO_IPIP); |