71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
/* $Id: upnppinhole.h,v 1.2 2012/09/18 08:29:49 nanard Exp $ */
|
|
/* MiniUPnP project
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
* (c) 2006-2012 Thomas Bernard
|
|
* This software is subject to the conditions detailed
|
|
* in the LICENCE file provided within the distribution */
|
|
|
|
#ifndef UPNPPINHOLE_H_INCLUDED
|
|
#define UPNPPINHOLE_H_INCLUDED
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef ENABLE_6FC_SERVICE
|
|
/* functions to be used by WANIPv6_FirewallControl implementation */
|
|
|
|
#if 0
|
|
/* retrieve outbound pinhole timeout */
|
|
int
|
|
upnp_check_outbound_pinhole(int proto, int * timeout);
|
|
#endif
|
|
|
|
/* add an inbound pinehole
|
|
* return value :
|
|
* 1 = success
|
|
* -1 = Pinhole space exhausted
|
|
* .. = error */
|
|
int
|
|
upnp_add_inboundpinhole(const char * raddr, unsigned short rport,
|
|
const char * iaddr, unsigned short iport,
|
|
int proto, unsigned int leasetime, int * uid);
|
|
|
|
/*
|
|
* return values :
|
|
* -1 not found
|
|
* */
|
|
int
|
|
upnp_get_pinhole_info(unsigned short uid,
|
|
char * raddr, int raddrlen,
|
|
unsigned short * rport,
|
|
char * iaddr, int iaddrlen,
|
|
unsigned short * iport,
|
|
int * proto,
|
|
unsigned int * leasetime,
|
|
unsigned int * packets);
|
|
|
|
/* update the lease time */
|
|
int
|
|
upnp_update_inboundpinhole(unsigned short uid, unsigned int leasetime);
|
|
|
|
/* remove the inbound pinhole */
|
|
int
|
|
upnp_delete_inboundpinhole(unsigned short uid);
|
|
|
|
/* ... */
|
|
#if 0
|
|
int
|
|
upnp_check_pinhole_working(const char * uid, char * eaddr, char * iaddr, unsigned short * eport, unsigned short * iport, char * protocol, int * rulenum_used);
|
|
#endif
|
|
|
|
/* return the number of expired pinhole removed
|
|
* write timestamp to next pinhole to exprire to next_timestamp
|
|
* next_timestamp is left untouched if there is no pinhole lest */
|
|
int
|
|
upnp_clean_expired_pinholes(unsigned int * next_timestamp);
|
|
|
|
#endif /* ENABLE_6FC_SERVICE */
|
|
|
|
#endif
|
|
|
|
|