tcp.h (6aef70a851ac77967992340faaff33f44598f60a) tcp.h (90bbcc608369a1b46089b0f5aa22b8ea31ffa12e)
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Definitions for the TCP module.
7 *
8 * Version: @(#)tcp.h 1.0.5 05/23/93

--- 318 unchanged lines hidden (view full) ---

327}
328
329bool tcp_check_oom(struct sock *sk, int shift);
330
331
332extern struct proto tcp_prot;
333
334#define TCP_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.tcp_statistics, field)
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Definitions for the TCP module.
7 *
8 * Version: @(#)tcp.h 1.0.5 05/23/93

--- 318 unchanged lines hidden (view full) ---

327}
328
329bool tcp_check_oom(struct sock *sk, int shift);
330
331
332extern struct proto tcp_prot;
333
334#define TCP_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.tcp_statistics, field)
335#define TCP_INC_STATS_BH(net, field) SNMP_INC_STATS_BH((net)->mib.tcp_statistics, field)
335#define __TCP_INC_STATS(net, field) SNMP_INC_STATS_BH((net)->mib.tcp_statistics, field)
336#define TCP_DEC_STATS(net, field) SNMP_DEC_STATS((net)->mib.tcp_statistics, field)
337#define TCP_ADD_STATS(net, field, val) SNMP_ADD_STATS((net)->mib.tcp_statistics, field, val)
338
339void tcp_tasklet_init(void);
340
341void tcp_v4_err(struct sk_buff *skb, u32);
342
343void tcp_shutdown(struct sock *sk, int how);

--- 1515 unchanged lines hidden ---
336#define TCP_DEC_STATS(net, field) SNMP_DEC_STATS((net)->mib.tcp_statistics, field)
337#define TCP_ADD_STATS(net, field, val) SNMP_ADD_STATS((net)->mib.tcp_statistics, field, val)
338
339void tcp_tasklet_init(void);
340
341void tcp_v4_err(struct sk_buff *skb, u32);
342
343void tcp_shutdown(struct sock *sk, int how);

--- 1515 unchanged lines hidden ---