ipt_ACCOUNT: (tomj) astyled using K&R style
[ipt_ACCOUNT] / linux / include / linux / netfilter_ipv4 / ipt_ACCOUNT.h
index 402b889..5feb533 100644 (file)
 
 /* Structure for the userspace part of ipt_ACCOUNT */
 struct ipt_account_info {
-       u_int32_t net_ip;
-       u_int32_t net_mask;
-       char table_name[ACCOUNT_TABLE_NAME_LEN];
-       int32_t table_nr;
+    u_int32_t net_ip;
+    u_int32_t net_mask;
+    char table_name[ACCOUNT_TABLE_NAME_LEN];
+    int32_t table_nr;
 };
 
 /* Internal table structure, generated by check_entry() */
-struct ipt_account_table
-{
+struct ipt_account_table {
     char name[ACCOUNT_TABLE_NAME_LEN];        /* name of the table */
     unsigned int ip;                          /* base IP of network */
     unsigned int netmask;                     /* netmask of the network */
@@ -36,8 +35,7 @@ struct ipt_account_table
 };
 
 /* Internal handle structure */
-struct ipt_account_handle
-{
+struct ipt_account_handle {
     unsigned int ip;                          /* base IP of network. Used for caculating the final IP during get_data() */
     unsigned char depth;                      /* size of network. See above for details */
     unsigned int itemcount;                   /* number of IPs in this table */
@@ -45,8 +43,7 @@ struct ipt_account_handle
 };
 
 /* Handle structure for communication with the userspace library */
-struct ipt_account_handle_sockopt
-{
+struct ipt_account_handle_sockopt {
     unsigned int handle_nr;                   /* Used for HANDLE_FREE */
     char name[ACCOUNT_TABLE_NAME_LEN];        /* Used for HANDLE_PREPARE_READ/READ_FLUSH */
     unsigned int itemcount;                   /* Used for HANDLE_PREPARE_READ/READ_FLUSH */
@@ -54,8 +51,7 @@ struct ipt_account_handle_sockopt
 
 /* Used for every IP entry */
 /* Size is 16 bytes so that 256 (class C network) * 16 fits in one kernel (zero) page */
-struct ipt_account_ip
-{
+struct ipt_account_ip {
     unsigned int src_packets;
     unsigned int src_bytes;
     unsigned int dst_packets;
@@ -65,8 +61,7 @@ struct ipt_account_ip
 /*
     Used for every IP when returning data
 */
-struct ipt_account_handle_ip
-{
+struct ipt_account_handle_ip {
     unsigned int ip;
     unsigned int src_packets;
     unsigned int src_bytes;
@@ -80,18 +75,15 @@ struct ipt_account_handle_ip
     Only 8 bit networks are preallocated, 16/24 bit networks
     allocate their slots when needed -> very efficent.
 */
-struct ipt_account_mask_24
-{
-    struct ipt_account_ip ip[256];    
+struct ipt_account_mask_24 {
+    struct ipt_account_ip ip[256];
 };
 
-struct ipt_account_mask_16
-{
+struct ipt_account_mask_16 {
     struct ipt_account_mask_24 *mask_24[256];
 };
 
-struct ipt_account_mask_8
-{
+struct ipt_account_mask_8 {
     struct ipt_account_mask_16 *mask_16[256];
 };