transmission/libtransmission/natpmp_local.h

32 lines
643 B
C
Raw Normal View History

/*
* This file Copyright (C) 2007-2014 Mnemosyne LLC
2006-09-25 18:37:45 +00:00
*
* It may be used under the GNU Public License v2 or v3 licenses,
* or any future license endorsed by Mnemosyne LLC.
2006-09-25 18:37:45 +00:00
*
* $Id: natpmp.h 12204 2011-03-22 15:19:54Z jordan $
*/
2006-09-25 18:37:45 +00:00
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
#endif
2006-09-25 18:37:45 +00:00
#ifndef TR_NATPMP_H
#define TR_NATPMP_H 1
/**
* @addtogroup port_forwarding Port Forwarding
* @{
*/
typedef struct tr_natpmp tr_natpmp;
2006-09-25 18:37:45 +00:00
tr_natpmp * tr_natpmpInit (void);
void tr_natpmpClose (tr_natpmp *);
int tr_natpmpPulse (tr_natpmp *, tr_port port, bool isEnabled, tr_port * public_port);
/* @} */
2006-09-25 18:37:45 +00:00
#endif