Changeset 12660
- Timestamp:
- 08/17/09 16:03:32 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/linux/brcm/linux.v24_2/include/linux/netfilter_ipv4/ip_conntrack.h
r8761 r12660 187 187 }; 188 188 189 struct ip_conntrack_counter 190 { 191 u_int64_t packets; 192 u_int64_t bytes; 193 }; 194 189 195 struct ip_conntrack_helper; 190 196 … … 203 209 /* Timer function; drops refcnt when it goes off. */ 204 210 struct timer_list timeout; 211 212 #if defined(CONFIG_IP_NF_CT_ACCT) || \ 213 defined(CONFIG_IP_NF_CT_ACCT_MODULE) 214 /* Accounting Information (same cache line as other written members) */ 215 struct ip_conntrack_counter counters[IP_CT_DIR_MAX]; 216 #endif 205 217 206 218 /* If we're expecting another related connection, this will be … … 292 304 293 305 /* Refresh conntrack for this many jiffies */ 294 extern void ip_ct_refresh(struct ip_conntrack *ct, 295 unsigned long extra_jiffies); 306 extern void ip_ct_refresh_acct(struct ip_conntrack *ct, 307 enum ip_conntrack_info ctinfo, 308 const struct iphdr *iph, 309 unsigned long extra_jiffies); 296 310 297 311 /* These are for NAT. Icky. */
Note: See TracChangeset
for help on using the changeset viewer.
