34 lines
954 B
C
34 lines
954 B
C
/* $Id: iptcrdr.h,v 1.17 2011/06/04 15:44:58 nanard Exp $ */
|
|
/* MiniUPnP project
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
* (c) 2006-2011 Thomas Bernard
|
|
* This software is subject to the conditions detailed
|
|
* in the LICENCE file provided within the distribution */
|
|
|
|
#ifndef __IPTCRDR_H__
|
|
#define __IPTCRDR_H__
|
|
|
|
#include "../commonrdr.h"
|
|
|
|
int
|
|
add_redirect_rule2(const char * ifname,
|
|
const char * rhost, unsigned short eport,
|
|
const char * iaddr, unsigned short iport, int proto,
|
|
const char * desc, unsigned int timestamp);
|
|
|
|
int
|
|
add_filter_rule2(const char * ifname,
|
|
const char * rhost, const char * iaddr,
|
|
unsigned short eport, unsigned short iport,
|
|
int proto, const char * desc);
|
|
|
|
int
|
|
delete_redirect_and_filter_rules(unsigned short eport, int proto);
|
|
|
|
/* for debug */
|
|
int
|
|
list_redirect_rule(const char * ifname);
|
|
|
|
#endif
|
|
|