2007-09-20 16:32:01 +00:00
|
|
|
/*
|
2009-01-10 23:09:07 +00:00
|
|
|
* This file Copyright (C) 2007-2009 Charles Kerr <charles@transmissionbt.com>
|
2007-09-20 16:32:01 +00:00
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2007-09-20 16:32:01 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2007-10-03 16:42:43 +00:00
|
|
|
#ifndef TR_PEER_MSGS_H
|
|
|
|
#define TR_PEER_MSGS_H
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
#include <inttypes.h>
|
2008-06-07 21:26:41 +00:00
|
|
|
#include "peer-common.h"
|
2007-09-20 16:32:01 +00:00
|
|
|
#include "publish.h"
|
|
|
|
|
|
|
|
struct tr_torrent;
|
|
|
|
struct tr_peer;
|
|
|
|
struct tr_bitfield;
|
|
|
|
|
|
|
|
typedef struct tr_peermsgs tr_peermsgs;
|
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_peermsgs* tr_peerMsgsNew( struct tr_torrent * torrent,
|
|
|
|
struct tr_peer * peer,
|
|
|
|
tr_delivery_func func,
|
|
|
|
void * user,
|
|
|
|
tr_publisher_tag * setme );
|
2007-10-03 04:04:34 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
void tr_peerMsgsSetChoke( tr_peermsgs *,
|
|
|
|
int doChoke );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
void tr_peerMsgsHave( tr_peermsgs * msgs,
|
|
|
|
uint32_t pieceIndex );
|
|
|
|
|
2009-01-02 17:46:22 +00:00
|
|
|
void tr_peerMsgsPulse( tr_peermsgs * msgs );
|
2008-09-17 19:44:24 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
void tr_peerMsgsCancel( tr_peermsgs * msgs,
|
|
|
|
uint32_t pieceIndex,
|
|
|
|
uint32_t offset,
|
|
|
|
uint32_t length );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-06-09 22:53:45 +00:00
|
|
|
void tr_peerMsgsFree( tr_peermsgs* );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2008-10-11 04:07:50 +00:00
|
|
|
tr_addreq_t tr_peerMsgsAddRequest( tr_peermsgs * peer,
|
|
|
|
uint32_t pieceIndex,
|
|
|
|
uint32_t offset,
|
2008-12-22 00:52:44 +00:00
|
|
|
uint32_t length );
|
2008-12-02 17:10:54 +00:00
|
|
|
|
2009-01-02 17:46:22 +00:00
|
|
|
void tr_peerMsgsUnsubscribe( tr_peermsgs * peer,
|
2008-12-02 17:10:54 +00:00
|
|
|
tr_publisher_tag tag );
|
|
|
|
|
|
|
|
size_t tr_generateAllowedSet( tr_piece_index_t * setmePieces,
|
|
|
|
size_t desiredSetSize,
|
|
|
|
size_t pieceCount,
|
|
|
|
const uint8_t * infohash,
|
|
|
|
const tr_address * addr );
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|