include/linux/netfilter/nf_conntrack_amanda.h

Source file repositories/reference/linux-study-clean/include/linux/netfilter/nf_conntrack_amanda.h

File Facts

System
Linux kernel
Corpus path
include/linux/netfilter/nf_conntrack_amanda.h
Extension
.h
Size
558 bytes
Lines
20
Domain
Core OS
Bucket
Core Kernel Interface
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _NF_CONNTRACK_AMANDA_H
#define _NF_CONNTRACK_AMANDA_H
/* AMANDA tracking. */

#include <linux/netfilter.h>
#include <linux/skbuff.h>
#include <net/netfilter/nf_conntrack_expect.h>

typedef unsigned int
nf_nat_amanda_hook_fn(struct sk_buff *skb,
		      enum ip_conntrack_info ctinfo,
		      unsigned int protoff,
		      unsigned int matchoff,
		      unsigned int matchlen,
		      struct nf_conntrack_expect *exp);

extern nf_nat_amanda_hook_fn __rcu *nf_nat_amanda_hook;
#endif /* _NF_CONNTRACK_AMANDA_H */

Annotation

Implementation Notes