[netfilter-cvslog] r3724 - trunk/patch-o-matic-ng/nf_conntrack/linux-2.6/include/linux/netfilter

yasuyuki at netfilter.org yasuyuki at netfilter.org
Thu Feb 17 17:29:35 CET 2005


Author: yasuyuki at netfilter.org
Date: 2005-02-17 17:29:34 +0100 (Thu, 17 Feb 2005)
New Revision: 3724

Modified:
   trunk/patch-o-matic-ng/nf_conntrack/linux-2.6/include/linux/netfilter/nf_conntrack_tcp.h
Log:
- editorial cleanup to reduce difference with ip_conntrack.



Modified: trunk/patch-o-matic-ng/nf_conntrack/linux-2.6/include/linux/netfilter/nf_conntrack_tcp.h
===================================================================
--- trunk/patch-o-matic-ng/nf_conntrack/linux-2.6/include/linux/netfilter/nf_conntrack_tcp.h	2005-02-17 16:25:49 UTC (rev 3723)
+++ trunk/patch-o-matic-ng/nf_conntrack/linux-2.6/include/linux/netfilter/nf_conntrack_tcp.h	2005-02-17 16:29:34 UTC (rev 3724)
@@ -23,24 +23,24 @@
 };
 
 /* Window scaling is advertised by the sender */
-#define NF_CT_TCP_FLAG_WINDOW_SCALE            0x01
+#define NF_CT_TCP_FLAG_WINDOW_SCALE		0x01
 
 /* SACK is permitted by the sender */
-#define NF_CT_TCP_FLAG_SACK_PERM               0x02
+#define NF_CT_TCP_FLAG_SACK_PERM		0x02
 
 struct nf_ct_tcp_state {
-	u_int32_t       td_end;         /* max of seq + len */
-	u_int32_t       td_maxend;      /* max of ack + max(win, 1) */
-	u_int32_t       td_maxwin;      /* max(win) */
-	u_int8_t        td_scale;       /* window scale factor */
-	u_int8_t        loose;          /* used when connection picked up from the middle */
-	u_int8_t        flags;          /* per direction state flags */
- };
+	u_int32_t	td_end;		/* max of seq + len */
+	u_int32_t	td_maxend;	/* max of ack + max(win, 1) */
+	u_int32_t	td_maxwin;	/* max(win) */
+	u_int8_t	td_scale;	/* window scale factor */
+	u_int8_t	loose;		/* used when connection picked up from the middle */
+	u_int8_t	flags;		/* per direction state flags */
+};
 
 struct nf_ct_tcp
 {
-	struct nf_ct_tcp_state seen[2]; /* connection parameters per direction */
-	u_int8_t	state;          /* state of the connection (enum tcp_conntrack) */
+	struct nf_ct_tcp_state seen[2];	/* connection parameters per direction */
+	u_int8_t	state;		/* state of the connection (enum tcp_conntrack) */
 	/* For detecting stale connections */
 	u_int8_t	last_dir;	/* Direction of the last packet (enum nf_conntrack_dir) */
 	u_int8_t	retrans;	/* Number of retransmitted packets */




More information about the netfilter-cvslog mailing list