transmission/libtransmission/metainfo.h

53 lines
2.1 KiB
C
Raw Normal View History

2006-07-16 19:39:23 +00:00
/******************************************************************************
* $Id$
*
2008-01-01 17:20:20 +00:00
* Copyright (c) 2005-2008 Transmission authors and contributors
2006-07-16 19:39:23 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#ifndef __TRANSMISSION__
2009-11-24 02:16:31 +00:00
#error only libtransmission should #include this header.
#endif
2006-07-16 19:39:23 +00:00
#ifndef TR_METAINFO_H
#define TR_METAINFO_H 1
#include "transmission.h"
struct tr_benc;
2009-11-24 02:16:31 +00:00
struct tr_magnet_info;
2007-12-21 22:18:40 +00:00
tr_bool tr_metainfoParse( const tr_session * session,
2009-11-24 02:16:31 +00:00
tr_info * setmeInfo,
int * setmeInfoDictLength,
int * setmeInfoDictOffset,
const struct tr_benc * benc );
void tr_metainfoRemoveSaved( const tr_session * session,
const tr_info * info );
void tr_metainfoMigrate( tr_session * session,
tr_info * inf );
2009-11-24 02:16:31 +00:00
void tr_metainfoSetFromMagnet( tr_info * inf, const struct tr_magnet_info * m );
2006-07-16 19:39:23 +00:00
#endif