2011-09-28 19:13:20 +00:00
|
|
|
/* $Id: ipfrdr.h,v 1.3 2007/11/02 22:54:01 nanard Exp $ */
|
|
|
|
/* MiniUPnP project
|
|
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
2012-03-01 01:44:38 +00:00
|
|
|
* (c) 2006-2007 Thomas Bernard
|
2011-09-28 19:13:20 +00:00
|
|
|
* This software is subject to the conditions detailed
|
|
|
|
* in the LICENCE file provided within the distribution */
|
2012-09-20 20:52:51 +00:00
|
|
|
#ifndef IPFRDR_H_INCLUDED
|
|
|
|
#define IPFRDR_H_INCLUDED
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
#include "../commonrdr.h"
|
|
|
|
|
|
|
|
int
|
2012-03-18 14:13:10 +00:00
|
|
|
add_redirect_rule2(const char * ifname, const char * rhost, unsigned short eport,
|
2011-09-28 19:13:20 +00:00
|
|
|
const char * iaddr, unsigned short iport, int proto,
|
2012-03-18 14:13:10 +00:00
|
|
|
const char * desc, unsigned int timestamp);
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
int
|
2012-03-18 14:13:10 +00:00
|
|
|
add_filter_rule2(const char * ifname, const char * rhost, const char * iaddr,
|
2011-09-28 19:13:20 +00:00
|
|
|
unsigned short eport, unsigned short iport,
|
|
|
|
int proto, const char * desc);
|
2012-03-01 01:44:38 +00:00
|
|
|
|
2011-09-28 19:13:20 +00:00
|
|
|
|
|
|
|
/* get_redirect_rule() gets internal IP and port from
|
|
|
|
* interface, external port and protocl
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
int
|
|
|
|
get_redirect_rule(const char * ifname, unsigned short eport, int proto,
|
|
|
|
char * iaddr, int iaddrlen, unsigned short * iport,
|
|
|
|
char * desc, int desclen,
|
|
|
|
u_int64_t * packets, u_int64_t * bytes);
|
|
|
|
|
|
|
|
int
|
|
|
|
get_redirect_rule_by_index(int index,
|
|
|
|
char * ifname, unsigned short * eport,
|
|
|
|
char * iaddr, int iaddrlen, unsigned short * iport,
|
|
|
|
int * proto, char * desc, int desclen,
|
|
|
|
u_int64_t * packets, u_int64_t * bytes);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* delete_redirect_rule()
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
delete_redirect_rule(const char * ifname, unsigned short eport, int proto);
|
|
|
|
|
|
|
|
/* delete_filter_rule()
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
delete_filter_rule(const char * ifname, unsigned short eport, int proto);
|
|
|
|
|
|
|
|
int
|
|
|
|
clear_redirect_rules(void);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|