libnl 1.1.4
log.h
1/*
2 * netlink/netfilter/log.h Netfilter Log
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation version 2.1
7 * of the License.
8 *
9 * Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
10 * Copyright (c) 2007 Philip Craig <philipc@snapgear.com>
11 * Copyright (c) 2007 Secure Computing Corporation
12 */
13
14#ifndef NETLINK_LOG_H_
15#define NETLINK_LOG_H_
16
17#include <netlink/netlink.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23struct nl_handle;
24struct nlmsghdr;
25struct nfnl_log;
26
27extern struct nl_object_ops log_obj_ops;
28
29/* General */
30extern struct nfnl_log *nfnl_log_alloc(void);
31extern struct nfnl_log *nfnlmsg_log_parse(struct nlmsghdr *);
32
33extern void nfnl_log_get(struct nfnl_log *);
34extern void nfnl_log_put(struct nfnl_log *);
35
36extern struct nl_msg * nfnl_log_build_bind(uint16_t);;
37extern int nfnl_log_bind(struct nl_handle *, uint16_t);
38extern struct nl_msg * nfnl_log_build_unbind(uint16_t);
39extern int nfnl_log_unbind(struct nl_handle *, uint16_t);
40extern struct nl_msg * nfnl_log_build_pf_bind(uint8_t);
41extern int nfnl_log_pf_bind(struct nl_handle *, uint8_t);
42extern struct nl_msg * nfnl_log_build_pf_unbind(uint8_t);
43extern int nfnl_log_pf_unbind(struct nl_handle *, uint8_t);
44extern struct nl_msg * nfnl_log_build_mode(uint16_t, uint8_t, uint32_t);
45extern int nfnl_log_set_mode(struct nl_handle *, uint16_t,
46 uint8_t, uint32_t);
47
48extern void nfnl_log_set_family(struct nfnl_log *, uint8_t);
49extern uint8_t nfnl_log_get_family(const struct nfnl_log *);
50
51extern void nfnl_log_set_hwproto(struct nfnl_log *, uint16_t);
52extern int nfnl_log_test_hwproto(const struct nfnl_log *);
53extern uint16_t nfnl_log_get_hwproto(const struct nfnl_log *);
54
55extern void nfnl_log_set_hook(struct nfnl_log *, uint8_t);
56extern int nfnl_log_test_hook(const struct nfnl_log *);
57extern uint8_t nfnl_log_get_hook(const struct nfnl_log *);
58
59extern void nfnl_log_set_mark(struct nfnl_log *, uint32_t);
60extern int nfnl_log_test_mark(const struct nfnl_log *);
61extern uint32_t nfnl_log_get_mark(const struct nfnl_log *);
62
63extern void nfnl_log_set_timestamp(struct nfnl_log *,
64 struct timeval *);
65extern const struct timeval *nfnl_log_get_timestamp(const struct nfnl_log *);
66
67extern void nfnl_log_set_indev(struct nfnl_log *, uint32_t);
68extern uint32_t nfnl_log_get_indev(const struct nfnl_log *);
69
70extern void nfnl_log_set_outdev(struct nfnl_log *, uint32_t);
71extern uint32_t nfnl_log_get_outdev(const struct nfnl_log *);
72
73extern void nfnl_log_set_physindev(struct nfnl_log *, uint32_t);
74extern uint32_t nfnl_log_get_physindev(const struct nfnl_log *);
75
76extern void nfnl_log_set_physoutdev(struct nfnl_log *, uint32_t);
77extern uint32_t nfnl_log_get_physoutdev(const struct nfnl_log *);
78
79extern void nfnl_log_set_hwaddr(struct nfnl_log *, uint8_t *, int);
80extern const uint8_t * nfnl_log_get_hwaddr(const struct nfnl_log *, int *);
81
82extern int nfnl_log_set_payload(struct nfnl_log *, uint8_t *, int);
83extern const void * nfnl_log_get_payload(const struct nfnl_log *, int *);
84
85extern int nfnl_log_set_prefix(struct nfnl_log *, void *);
86extern const char * nfnl_log_get_prefix(const struct nfnl_log *);
87
88extern void nfnl_log_set_uid(struct nfnl_log *, uint32_t);
89extern int nfnl_log_test_uid(const struct nfnl_log *);
90extern uint32_t nfnl_log_get_uid(const struct nfnl_log *);
91
92extern void nfnl_log_set_seq(struct nfnl_log *, uint32_t);
93extern int nfnl_log_test_seq(const struct nfnl_log *);
94extern uint32_t nfnl_log_get_seq(const struct nfnl_log *);
95
96extern void nfnl_log_set_seq_global(struct nfnl_log *, uint32_t);
97extern int nfnl_log_test_seq_global(const struct nfnl_log *);
98extern uint32_t nfnl_log_get_seq_global(const struct nfnl_log *);
99
100#ifdef __cplusplus
101}
102#endif
103
104#endif
105
Object Operations.
Definition: object-api.h:255
Netlink message header.