1 /* SPDX-License-Identifier: LGPL-2.1-only */ 2 /* 3 * Copyright (c) 2003-2006 Thomas Graf <[email protected]> 4 * Copyright (c) 2006 Petr Gotthard <[email protected]> 5 * Copyright (c) 2006 Siemens AG Oesterreich 6 */ 7 8 #ifndef NETLINK_FW_H_ 9 #define NETLINK_FW_H_ 10 11 #include <netlink/netlink.h> 12 #include <netlink/route/classifier.h> 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 18 extern int rtnl_fw_set_classid(struct rtnl_cls *, uint32_t); 19 extern int rtnl_fw_set_mask(struct rtnl_cls *, uint32_t); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif 26