diff options
author | Damjan Marion <damarion@cisco.com> | 2024-03-12 17:42:49 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-03-12 19:29:56 +0000 |
commit | c3148b1be8f519c80c4417c21b978dfef72b351b (patch) | |
tree | 2511eb86e5c429ab018716fed0366164e6faf679 /src/plugins/dns/dns_packet.h | |
parent | e2ed59933153d665ee43add2de03a581627b73fa (diff) |
misc: remove GNU Indent directives
Type: refactor
Change-Id: I5235bf3e9aff58af6ba2c14e8c6529c4fc9ec86c
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dns/dns_packet.h')
-rw-r--r-- | src/plugins/dns/dns_packet.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/dns/dns_packet.h b/src/plugins/dns/dns_packet.h index da5ddfa64fe..13daf7849de 100644 --- a/src/plugins/dns/dns_packet.h +++ b/src/plugins/dns/dns_packet.h @@ -20,7 +20,6 @@ * DNS packet header format */ -/* *INDENT-OFF* */ typedef CLIB_PACKED (struct { u16 id; /**< transaction ID */ u16 flags; /**< flags */ @@ -29,7 +28,6 @@ typedef CLIB_PACKED (struct { u16 nscount; /**< number of name servers */ u16 arcount; /**< number of additional records */ }) dns_header_t; -/* *INDENT-ON* */ #define DNS_RCODE_MASK (0xf) #define DNS_RCODE_NO_ERROR 0 @@ -99,17 +97,14 @@ typedef CLIB_PACKED (struct { /** * DNS "question" fixed header. */ -/* *INDENT-OFF* */ typedef CLIB_PACKED (struct { u16 type; /**< record type requested */ u16 class; /**< class, 1 = internet */ }) dns_query_t; -/* *INDENT-ON* */ /** * DNS RR fixed header. */ -/* *INDENT-OFF* */ typedef CLIB_PACKED (struct { u16 type; /**< record type */ u16 class; /**< class, 1 = internet */ @@ -118,7 +113,6 @@ typedef CLIB_PACKED (struct { /**< length of r */ u8 rdata[0]; }) dns_rr_t; -/* *INDENT-ON* */ /* * There are quite a number of DNS record types |