libnl 3.7.0
fw.h
1/* SPDX-License-Identifier: LGPL-2.1-only */
2/*
3 * Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
4 * Copyright (c) 2006 Petr Gotthard <petr.gotthard@siemens.com>
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
15extern "C" {
16#endif
17
18extern int rtnl_fw_set_classid(struct rtnl_cls *, uint32_t);
19extern int rtnl_fw_set_mask(struct rtnl_cls *, uint32_t);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif