2008-06-07 21:26:41 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2008-2014 Mnemosyne LLC
|
2008-06-07 21:26:41 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2008-06-07 21:26:41 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2008-06-07 21:26:41 +00:00
|
|
|
#ifndef TR_WEBSEED_H
|
|
|
|
#define TR_WEBSEED_H
|
|
|
|
|
|
|
|
typedef struct tr_webseed tr_webseed;
|
|
|
|
|
|
|
|
#include "peer-common.h"
|
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
tr_webseed* tr_webseedNew (struct tr_torrent * torrent,
|
2010-06-19 14:33:10 +00:00
|
|
|
const char * url,
|
2013-09-08 17:08:18 +00:00
|
|
|
tr_peer_callback callback,
|
2012-12-05 17:29:46 +00:00
|
|
|
void * callback_data);
|
2008-06-07 21:26:41 +00:00
|
|
|
|
|
|
|
#endif
|