transmission/libtransmission/upnp.h

29 lines
513 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 GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
2006-09-25 18:37:45 +00:00
*
*/
2006-09-25 18:37:45 +00:00
#pragma once
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
#endif
/**
* @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*, tr_port port, bool isEnabled, bool doPortCheck);
/* @} */