File: iptc.h

package info (click to toggle)
linux-igd 1.0%2Bcvs20070630-5%2Bdeb9u1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 888 kB
  • sloc: ansic: 2,066; xml: 593; sh: 136; makefile: 50
file content (29 lines) | stat: -rw-r--r-- 992 bytes parent folder | download | duplicates (6)
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
#ifndef _IPTC_H_
	#define _IPTC_H_

void iptc_add_rule(const char *table,
                   const char *chain,
                   const char *protocol,
                   const char *iiface,
                   const char *oiface,
                   const char *src,
                   const char *dest,
                   const char *srcports,
                   const char *destports,
                   const char *target,
                   const char *dnat_to,
                   const int append);

void iptc_delete_rule(const char *table,
                      const char *chain,
                      const char *protocol,
                      const char *iniface,
                      const char *outiface,
                      const char *src,
                      const char *dest,
                      const char *srcports,
                      const char *destports,
                      const char *target,
                      const char *dnat_to);

#endif // _IPTC_H_