diff options
| author | Patrick McHardy <kaber@trash.net> | 2008-01-31 07:42:11 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-01-31 22:27:59 -0500 |
| commit | c88130bcd546e73e66165f9c29113dae9facf1ec (patch) | |
| tree | fd4992c4126c7ad771d297c778ee177f4fb06a72 /include/net | |
| parent | 76eb946040a7b4c797979a9c22464b9a07890ba5 (diff) | |
[NETFILTER]: nf_conntrack: naming unification
Rename all "conntrack" variables to "ct" for more consistency and
avoiding some overly long lines.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
| -rw-r--r-- | include/net/netfilter/nf_conntrack.h | 4 | ||||
| -rw-r--r-- | include/net/netfilter/nf_conntrack_l3proto.h | 4 | ||||
| -rw-r--r-- | include/net/netfilter/nf_conntrack_l4proto.h | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/include/net/netfilter/nf_conntrack.h b/include/net/netfilter/nf_conntrack.h index 14e0cc8364f2..bda78a286e2b 100644 --- a/include/net/netfilter/nf_conntrack.h +++ b/include/net/netfilter/nf_conntrack.h | |||
| @@ -145,7 +145,7 @@ nf_ct_tuplehash_to_ctrack(const struct nf_conntrack_tuple_hash *hash) | |||
| 145 | 145 | ||
| 146 | /* Alter reply tuple (maybe alter helper). */ | 146 | /* Alter reply tuple (maybe alter helper). */ |
| 147 | extern void | 147 | extern void |
| 148 | nf_conntrack_alter_reply(struct nf_conn *conntrack, | 148 | nf_conntrack_alter_reply(struct nf_conn *ct, |
| 149 | const struct nf_conntrack_tuple *newreply); | 149 | const struct nf_conntrack_tuple *newreply); |
| 150 | 150 | ||
| 151 | /* Is this tuple taken? (ignoring any belonging to the given | 151 | /* Is this tuple taken? (ignoring any belonging to the given |
| @@ -218,7 +218,7 @@ static inline void nf_ct_refresh(struct nf_conn *ct, | |||
| 218 | /* Update TCP window tracking data when NAT mangles the packet */ | 218 | /* Update TCP window tracking data when NAT mangles the packet */ |
| 219 | extern void nf_conntrack_tcp_update(struct sk_buff *skb, | 219 | extern void nf_conntrack_tcp_update(struct sk_buff *skb, |
| 220 | unsigned int dataoff, | 220 | unsigned int dataoff, |
| 221 | struct nf_conn *conntrack, | 221 | struct nf_conn *ct, |
| 222 | int dir); | 222 | int dir); |
| 223 | 223 | ||
| 224 | /* Fake conntrack entry for untracked connections */ | 224 | /* Fake conntrack entry for untracked connections */ |
diff --git a/include/net/netfilter/nf_conntrack_l3proto.h b/include/net/netfilter/nf_conntrack_l3proto.h index d5526bcce147..b886e3ae6cad 100644 --- a/include/net/netfilter/nf_conntrack_l3proto.h +++ b/include/net/netfilter/nf_conntrack_l3proto.h | |||
| @@ -43,7 +43,7 @@ struct nf_conntrack_l3proto | |||
| 43 | const struct nf_conntrack_tuple *); | 43 | const struct nf_conntrack_tuple *); |
| 44 | 44 | ||
| 45 | /* Returns verdict for packet, or -1 for invalid. */ | 45 | /* Returns verdict for packet, or -1 for invalid. */ |
| 46 | int (*packet)(struct nf_conn *conntrack, | 46 | int (*packet)(struct nf_conn *ct, |
| 47 | const struct sk_buff *skb, | 47 | const struct sk_buff *skb, |
| 48 | enum ip_conntrack_info ctinfo); | 48 | enum ip_conntrack_info ctinfo); |
| 49 | 49 | ||
| @@ -51,7 +51,7 @@ struct nf_conntrack_l3proto | |||
| 51 | * Called when a new connection for this protocol found; | 51 | * Called when a new connection for this protocol found; |
| 52 | * returns TRUE if it's OK. If so, packet() called next. | 52 | * returns TRUE if it's OK. If so, packet() called next. |
| 53 | */ | 53 | */ |
| 54 | int (*new)(struct nf_conn *conntrack, const struct sk_buff *skb); | 54 | int (*new)(struct nf_conn *ct, const struct sk_buff *skb); |
| 55 | 55 | ||
| 56 | /* | 56 | /* |
| 57 | * Called before tracking. | 57 | * Called before tracking. |
diff --git a/include/net/netfilter/nf_conntrack_l4proto.h b/include/net/netfilter/nf_conntrack_l4proto.h index 84892cc1d603..efc16eccddb1 100644 --- a/include/net/netfilter/nf_conntrack_l4proto.h +++ b/include/net/netfilter/nf_conntrack_l4proto.h | |||
| @@ -36,7 +36,7 @@ struct nf_conntrack_l4proto | |||
| 36 | const struct nf_conntrack_tuple *orig); | 36 | const struct nf_conntrack_tuple *orig); |
| 37 | 37 | ||
| 38 | /* Returns verdict for packet, or -1 for invalid. */ | 38 | /* Returns verdict for packet, or -1 for invalid. */ |
| 39 | int (*packet)(struct nf_conn *conntrack, | 39 | int (*packet)(struct nf_conn *ct, |
| 40 | const struct sk_buff *skb, | 40 | const struct sk_buff *skb, |
| 41 | unsigned int dataoff, | 41 | unsigned int dataoff, |
| 42 | enum ip_conntrack_info ctinfo, | 42 | enum ip_conntrack_info ctinfo, |
| @@ -45,11 +45,11 @@ struct nf_conntrack_l4proto | |||
| 45 | 45 | ||
| 46 | /* Called when a new connection for this protocol found; | 46 | /* Called when a new connection for this protocol found; |
| 47 | * returns TRUE if it's OK. If so, packet() called next. */ | 47 | * returns TRUE if it's OK. If so, packet() called next. */ |
| 48 | int (*new)(struct nf_conn *conntrack, const struct sk_buff *skb, | 48 | int (*new)(struct nf_conn *ct, const struct sk_buff *skb, |
| 49 | unsigned int dataoff); | 49 | unsigned int dataoff); |
| 50 | 50 | ||
| 51 | /* Called when a conntrack entry is destroyed */ | 51 | /* Called when a conntrack entry is destroyed */ |
| 52 | void (*destroy)(struct nf_conn *conntrack); | 52 | void (*destroy)(struct nf_conn *ct); |
| 53 | 53 | ||
| 54 | int (*error)(struct sk_buff *skb, unsigned int dataoff, | 54 | int (*error)(struct sk_buff *skb, unsigned int dataoff, |
| 55 | enum ip_conntrack_info *ctinfo, | 55 | enum ip_conntrack_info *ctinfo, |
