]> The Tcpdump Group git mirrors - libpcap/commitdiff
Clean up whitespace.
authorGuy Harris <[email protected]>
Wed, 23 May 2018 21:53:46 +0000 (14:53 -0700)
committerGuy Harris <[email protected]>
Wed, 23 May 2018 21:53:46 +0000 (14:53 -0700)
pcap/nflog.h

index 29a71d2d3fb5753b4f126af9157f729c457a2721..fbcf70bf77b7f23641f92c57e1275e9446eb21f9 100644 (file)
  * data, etc.).
  */
 typedef struct nflog_hdr {
-       uint8_t nflog_family;           /* address family */
-       uint8_t nflog_version;          /* version */
-       uint16_t        nflog_rid;              /* resource ID */
+       uint8_t         nflog_family;   /* address family */
+       uint8_t         nflog_version;  /* version */
+       uint16_t        nflog_rid;      /* resource ID */
 } nflog_hdr_t;
 
 typedef struct nflog_tlv {
-       uint16_t        tlv_length;             /* tlv length */
-       uint16_t        tlv_type;               /* tlv type */
+       uint16_t        tlv_length;     /* tlv length */
+       uint16_t        tlv_type;       /* tlv type */
        /* value follows this */
 } nflog_tlv_t;
 
 typedef struct nflog_packet_hdr {
        uint16_t        hw_protocol;    /* hw protocol */
-       uint8_t hook;           /* netfilter hook */
-       uint8_t pad;            /* padding to 32 bits */
+       uint8_t         hook;           /* netfilter hook */
+       uint8_t         pad;            /* padding to 32 bits */
 } nflog_packet_hdr_t;
 
 typedef struct nflog_hwaddr {
        uint16_t        hw_addrlen;     /* address length */
        uint16_t        pad;            /* padding to 32-bit boundary */
-       uint8_t hw_addr[8];     /* address, up to 8 bytes */
+       uint8_t         hw_addr[8];     /* address, up to 8 bytes */
 } nflog_hwaddr_t;
 
 typedef struct nflog_timestamp {