File: print.h

package info (click to toggle)
ipset 6.23-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,356 kB
  • ctags: 3,215
  • sloc: ansic: 30,595; sh: 14,626; makefile: 212; pascal: 125; awk: 3
file content (80 lines) | stat: -rw-r--r-- 3,343 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* Copyright 2007-2010 Jozsef Kadlecsik (kadlec@blackhole.kfki.hu)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#ifndef LIBIPSET_PRINT_H
#define LIBIPSET_PRINT_H

#include <libipset/data.h>			/* enum ipset_opt */

typedef int (*ipset_printfn)(char *buf, unsigned int len,
			     const struct ipset_data *data,
			     enum ipset_opt opt, uint8_t env);

extern int ipset_print_ether(char *buf, unsigned int len,
			     const struct ipset_data *data,
			     enum ipset_opt opt, uint8_t env);
extern int ipset_print_family(char *buf, unsigned int len,
			      const struct ipset_data *data,
			      enum ipset_opt opt, uint8_t env);
extern int ipset_print_type(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);
extern int ipset_print_ip(char *buf, unsigned int len,
			  const struct ipset_data *data,
			  enum ipset_opt opt, uint8_t env);
extern int ipset_print_ipaddr(char *buf, unsigned int len,
			      const struct ipset_data *data,
			      enum ipset_opt opt, uint8_t env);
extern int ipset_print_number(char *buf, unsigned int len,
			      const struct ipset_data *data,
			      enum ipset_opt opt, uint8_t env);
extern int ipset_print_name(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);
extern int ipset_print_port(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);
extern int ipset_print_mark(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);
extern int ipset_print_iface(char *buf, unsigned int len,
			     const struct ipset_data *data,
			     enum ipset_opt opt, uint8_t env);
extern int ipset_print_comment(char *buf, unsigned int len,
			     const struct ipset_data *data,
			     enum ipset_opt opt, uint8_t env);
extern int ipset_print_skbmark(char *buf, unsigned int len,
			      const struct ipset_data *data,
			      enum ipset_opt opt, uint8_t env);
extern int ipset_print_skbprio(char *buf, unsigned int len,
				const struct ipset_data *data,
				enum ipset_opt opt, uint8_t env);
extern int ipset_print_proto(char *buf, unsigned int len,
			     const struct ipset_data *data,
			     enum ipset_opt opt, uint8_t env);
extern int ipset_print_icmp(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);
extern int ipset_print_icmpv6(char *buf, unsigned int len,
			      const struct ipset_data *data,
			      enum ipset_opt opt, uint8_t env);
extern int ipset_print_proto_port(char *buf, unsigned int len,
				  const struct ipset_data *data,
				  enum ipset_opt opt, uint8_t env);
extern int ipset_print_flag(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);
extern int ipset_print_elem(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);

#define ipset_print_portnum	ipset_print_number

extern int ipset_print_data(char *buf, unsigned int len,
			    const struct ipset_data *data,
			    enum ipset_opt opt, uint8_t env);

#endif /* LIBIPSET_PRINT_H */