From cc2316f37085fe013a120ddd8121fa0edf778ec4 Mon Sep 17 00:00:00 2001 From: Patrick McHardy Date: Sun, 13 Apr 2014 12:58:25 +0200 Subject: datatypes: rename some types for more consistency Add some more consistency by using _addr for all address types, _proto for all protocol types and iface_ for all interface types. Signed-off-by: Patrick McHardy --- src/proto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/proto.c') diff --git a/src/proto.c b/src/proto.c index 3e62f92a..0a37a658 100644 --- a/src/proto.c +++ b/src/proto.c @@ -732,7 +732,7 @@ const struct proto_desc proto_vlan = { const struct datatype etheraddr_type = { .type = TYPE_ETHERADDR, - .name = "etheraddr", + .name = "ether_addr", .desc = "Ethernet address", .byteorder = BYTEORDER_HOST_ENDIAN, .size = ETH_ALEN * BITS_PER_BYTE, @@ -769,7 +769,7 @@ static void ethertype_print(const struct expr *expr) const struct datatype ethertype_type = { .type = TYPE_ETHERTYPE, - .name = "ethertype", + .name = "ether_type", .desc = "Ethernet protocol", .byteorder = BYTEORDER_BIG_ENDIAN, .size = 2 * BITS_PER_BYTE, -- cgit v1.2.3