--- embedaddon/miniupnpd/netfilter/iptcrdr.h 2012/02/21 23:16:02 1.1.1.1 +++ embedaddon/miniupnpd/netfilter/iptcrdr.h 2013/07/22 00:32:35 1.1.1.3 @@ -1,22 +1,24 @@ -/* $Id: iptcrdr.h,v 1.1.1.1 2012/02/21 23:16:02 misho Exp $ */ +/* $Id: iptcrdr.h,v 1.1.1.3 2013/07/22 00:32:35 misho Exp $ */ /* MiniUPnP project * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ - * (c) 2006 Thomas Bernard + * (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__ +#ifndef IPTCRDR_H_INCLUDED +#define IPTCRDR_H_INCLUDED #include "../commonrdr.h" int -add_redirect_rule2(const char * ifname, unsigned short eport, +add_redirect_rule2(const char * ifname, + const char * rhost, unsigned short eport, const char * iaddr, unsigned short iport, int proto, - const char * desc); + const char * desc, unsigned int timestamp); int -add_filter_rule2(const char * ifname, const char * iaddr, +add_filter_rule2(const char * ifname, + const char * rhost, const char * iaddr, unsigned short eport, unsigned short iport, int proto, const char * desc); @@ -26,13 +28,6 @@ delete_redirect_and_filter_rules(unsigned short eport, /* for debug */ int list_redirect_rule(const char * ifname); - -int -addnatrule(int proto, unsigned short eport, - const char * iaddr, unsigned short iport); - -int -add_filter_rule(int proto, const char * iaddr, unsigned short iport); #endif