version 1.1, 2012/02/21 23:16:02
|
version 1.1.1.3, 2013/07/22 00:32:35
|
Line 1
|
Line 1
|
/* $Id$ */ |
/* $Id$ */ |
/* MiniUPnP project |
/* MiniUPnP project |
* (c) 2006-2007 Thomas Bernard | * (c) 2006-2011 Thomas Bernard |
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ |
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ |
* This software is subject to the conditions detailed |
* This software is subject to the conditions detailed |
* in the LICENCE file provided within the distribution */ |
* in the LICENCE file provided within the distribution */ |
#ifndef __COMMONRDR_H__ | #ifndef COMMONRDR_H_INCLUDED |
#define __COMMONRDR_H__ | #define COMMONRDR_H_INCLUDED |
|
|
#include "config.h" |
#include "config.h" |
|
|
Line 23 int
|
Line 23 int
|
get_redirect_rule(const char * ifname, unsigned short eport, int proto, |
get_redirect_rule(const char * ifname, unsigned short eport, int proto, |
char * iaddr, int iaddrlen, unsigned short * iport, |
char * iaddr, int iaddrlen, unsigned short * iport, |
char * desc, int desclen, |
char * desc, int desclen, |
|
char * rhost, int rhostlen, |
|
unsigned int * timestamp, |
u_int64_t * packets, u_int64_t * bytes); |
u_int64_t * packets, u_int64_t * bytes); |
|
|
int |
int |
Line 30 get_redirect_rule_by_index(int index,
|
Line 32 get_redirect_rule_by_index(int index,
|
char * ifname, unsigned short * eport, |
char * ifname, unsigned short * eport, |
char * iaddr, int iaddrlen, unsigned short * iport, |
char * iaddr, int iaddrlen, unsigned short * iport, |
int * proto, char * desc, int desclen, |
int * proto, char * desc, int desclen, |
|
char * rhost, int rhostlen, |
|
unsigned int * timestamp, |
u_int64_t * packets, u_int64_t * bytes); |
u_int64_t * packets, u_int64_t * bytes); |
|
|
|
/* return an (malloc'ed) array of "external" port for which there is |
|
* a port mapping. number is the size of the array */ |
|
unsigned short * |
|
get_portmappings_in_range(unsigned short startport, unsigned short endport, |
|
int proto, unsigned int * number); |
|
|
#endif |
#endif |
|
|