transmission/libtransmission/upnp.h

34 lines
667 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$
*/
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_UPNP_H
#define TR_UPNP_H 1
/**
* @addtogroup port_forwarding Port Forwarding
* @{
*/
typedef struct tr_upnp tr_upnp;
2006-09-25 18:37:45 +00:00
tr_upnp * tr_upnpInit (void);
void tr_upnpClose (tr_upnp *);
int tr_upnpPulse ( tr_upnp *,
int port,
int isEnabled,
int doPortCheck);
/* @} */
2006-09-25 18:37:45 +00:00
#endif