libnl 3.7.0
text.h
1/* SPDX-License-Identifier: LGPL-2.1-only */
2/*
3 * Copyright (c) 2010 Thomas Graf <tgraf@suug.ch>
4 */
5
6#ifndef NETLINK_CLS_EMATCH_TEXT_H_
7#define NETLINK_CLS_EMATCH_TEXT_H_
8
9#include <netlink/netlink.h>
10#include <netlink/route/cls/ematch.h>
11#include <linux/tc_ematch/tc_em_text.h>
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17extern void rtnl_ematch_text_set_from(struct rtnl_ematch *,
18 uint8_t, uint16_t);
19extern uint16_t rtnl_ematch_text_get_from_offset(struct rtnl_ematch *);
20extern uint8_t rtnl_ematch_text_get_from_layer(struct rtnl_ematch *);
21extern void rtnl_ematch_text_set_to(struct rtnl_ematch *,
22 uint8_t, uint16_t);
23extern uint16_t rtnl_ematch_text_get_to_offset(struct rtnl_ematch *);
24extern uint8_t rtnl_ematch_text_get_to_layer(struct rtnl_ematch *);
25extern void rtnl_ematch_text_set_pattern(struct rtnl_ematch *,
26 char *, size_t);
27extern char * rtnl_ematch_text_get_pattern(struct rtnl_ematch *);
28extern size_t rtnl_ematch_text_get_len(struct rtnl_ematch *);
29extern void rtnl_ematch_text_set_algo(struct rtnl_ematch *, const char *);
30extern char * rtnl_ematch_text_get_algo(struct rtnl_ematch *);
31
32#ifdef __cplusplus
33}
34#endif
35
36#endif