ip_conntrack_core.h
来自「讲述linux的初始化过程」· C头文件 代码 · 共 45 行
H
45 行
#ifndef _IP_CONNTRACK_CORE_H#define _IP_CONNTRACK_CORE_H#include <linux/netfilter_ipv4/lockhelp.h>/* This header is used to share core functionality between the standalone connection tracking module, and the compatibility layer's use of connection tracking. */extern unsigned int ip_conntrack_in(unsigned int hooknum, struct sk_buff **pskb, const struct net_device *in, const struct net_device *out, int (*okfn)(struct sk_buff *));extern int ip_conntrack_init(void);extern void ip_conntrack_cleanup(void);struct ip_conntrack_protocol;extern struct ip_conntrack_protocol *find_proto(u_int8_t protocol);/* Like above, but you already have conntrack read lock. */extern struct ip_conntrack_protocol *__find_proto(u_int8_t protocol);extern struct list_head protocol_list;/* Returns conntrack if it dealt with ICMP, and filled in skb->nfct */extern struct ip_conntrack *icmp_error_track(struct sk_buff *skb, enum ip_conntrack_info *ctinfo, unsigned int hooknum);extern int get_tuple(const struct iphdr *iph, size_t len, struct ip_conntrack_tuple *tuple, struct ip_conntrack_protocol *protocol);/* Find a connection corresponding to a tuple. */struct ip_conntrack_tuple_hash *ip_conntrack_find_get(const struct ip_conntrack_tuple *tuple, const struct ip_conntrack *ignored_conntrack);/* Confirm a connection */void ip_conntrack_confirm(struct ip_conntrack *ct);extern unsigned int ip_conntrack_htable_size;extern struct list_head *ip_conntrack_hash;extern struct list_head expect_list;DECLARE_RWLOCK_EXTERN(ip_conntrack_lock);#endif /* _IP_CONNTRACK_CORE_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?