Miniupnpd: update from 1.8 (20140422) to 1.9 (20141209)
[tomato.git] / release / src / router / miniupnpd / pf / pfpinhole.h
blobeca690de3114c81da8d830f99b7f7da19bc85449
1 /* $Id: pfpinhole.h,v 1.12 2014/05/15 09:27:21 nanard Exp $ */
2 /* MiniUPnP project
3 * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
4 * (c) 2012 Thomas Bernard
5 * This software is subject to the conditions detailed
6 * in the LICENCE file provided within the distribution */
8 #ifndef PFPINHOLE_H_INCLUDED
9 #define PFPINHOLE_H_INCLUDED
11 #ifdef ENABLE_UPNPPINHOLE
13 int add_pinhole(const char * ifname,
14 const char * rem_host, unsigned short rem_port,
15 const char * int_client, unsigned short int_port,
16 int proto, const char * desc, unsigned int timestamp);
18 int delete_pinhole(unsigned short uid);
20 int
21 get_pinhole_info(unsigned short uid,
22 char * rem_host, int rem_hostlen, unsigned short * rem_port,
23 char * int_client, int int_clientlen, unsigned short * int_port,
24 int * proto, char * desc, int desclen,
25 unsigned int * timestamp,
26 u_int64_t * packets, u_int64_t * bytes);
28 int update_pinhole(unsigned short uid, unsigned int timestamp);
30 int clean_pinhole_list(unsigned int * next_timestamp);
32 #endif /* ENABLE_UPNPPINHOLE */
34 #endif