Server IP : 172.67.216.182 / Your IP : 172.70.208.8 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/include/linux/netfilter/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _NFNL_HOOK_H_ #define _NFNL_HOOK_H_ enum nfnl_hook_msg_types { NFNL_MSG_HOOK_GET, NFNL_MSG_HOOK_MAX, }; /** * enum nfnl_hook_attributes - netfilter hook netlink attributes * * @NFNLA_HOOK_HOOKNUM: netfilter hook number (NLA_U32) * @NFNLA_HOOK_PRIORITY: netfilter hook priority (NLA_U32) * @NFNLA_HOOK_DEV: netdevice name (NLA_STRING) * @NFNLA_HOOK_FUNCTION_NAME: hook function name (NLA_STRING) * @NFNLA_HOOK_MODULE_NAME: kernel module that registered this hook (NLA_STRING) * @NFNLA_HOOK_CHAIN_INFO: basechain hook metadata (NLA_NESTED) */ enum nfnl_hook_attributes { NFNLA_HOOK_UNSPEC, NFNLA_HOOK_HOOKNUM, NFNLA_HOOK_PRIORITY, NFNLA_HOOK_DEV, NFNLA_HOOK_FUNCTION_NAME, NFNLA_HOOK_MODULE_NAME, NFNLA_HOOK_CHAIN_INFO, __NFNLA_HOOK_MAX }; #define NFNLA_HOOK_MAX (__NFNLA_HOOK_MAX - 1) /** * enum nfnl_hook_chain_info_attributes - chain description * * NFNLA_HOOK_INFO_DESC: nft chain and table name (enum nft_table_attributes) (NLA_NESTED) * NFNLA_HOOK_INFO_TYPE: chain type (enum nfnl_hook_chaintype) (NLA_U32) */ enum nfnl_hook_chain_info_attributes { NFNLA_HOOK_INFO_UNSPEC, NFNLA_HOOK_INFO_DESC, NFNLA_HOOK_INFO_TYPE, __NFNLA_HOOK_INFO_MAX, }; #define NFNLA_HOOK_INFO_MAX (__NFNLA_HOOK_INFO_MAX - 1) enum nfnl_hook_chain_desc_attributes { NFNLA_CHAIN_UNSPEC, NFNLA_CHAIN_TABLE, NFNLA_CHAIN_FAMILY, NFNLA_CHAIN_NAME, __NFNLA_CHAIN_MAX, }; #define NFNLA_CHAIN_MAX (__NFNLA_CHAIN_MAX - 1) /** * enum nfnl_hook_chaintype - chain type * * @NFNL_HOOK_TYPE_NFTABLES nf_tables base chain */ enum nfnl_hook_chaintype { NFNL_HOOK_TYPE_NFTABLES = 0x1, }; #endif /* _NFNL_HOOK_H */