2007-09-20 16:32:01 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2007-2014 Mnemosyne LLC
|
2007-09-20 16:32:01 +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.
|
2007-09-20 16:32:01 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2013-02-04 16:23:33 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#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
|
|
|
|
2011-03-25 06:20:12 +00:00
|
|
|
struct tr_address;
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_bitfield;
|
2011-03-25 06:20:12 +00:00
|
|
|
struct tr_peer;
|
2013-02-04 16:23:33 +00:00
|
|
|
struct tr_peerIo;
|
2011-03-25 06:20:12 +00:00
|
|
|
struct tr_torrent;
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/**
|
|
|
|
* @addtogroup peers Peers
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
typedef struct tr_peerMsgs tr_peerMsgs;
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
#define PEER_MSGS(o) (tr_peerMsgsCast(o))
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
bool tr_isPeerMsgs (const void * msgs);
|
2010-03-06 14:56:15 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
tr_peerMsgs* tr_peerMsgsCast (void * msgs);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
tr_peerMsgs* tr_peerMsgsNew (struct tr_torrent * torrent,
|
|
|
|
struct tr_peerIo * io,
|
2013-09-08 17:08:18 +00:00
|
|
|
tr_peer_callback callback,
|
2013-02-04 16:23:33 +00:00
|
|
|
void * callback_data);
|
2010-03-08 04:29:58 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
bool tr_peerMsgsIsPeerChoked (const tr_peerMsgs * msgs);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
bool tr_peerMsgsIsPeerInterested (const tr_peerMsgs * msgs);
|
2008-09-17 19:44:24 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
bool tr_peerMsgsIsClientChoked (const tr_peerMsgs * msgs);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
bool tr_peerMsgsIsClientInterested (const tr_peerMsgs * msgs);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2013-05-27 21:04:48 +00:00
|
|
|
bool tr_peerMsgsIsActive (const tr_peerMsgs * msgs,
|
|
|
|
tr_direction direction);
|
|
|
|
|
|
|
|
void tr_peerMsgsUpdateActive (tr_peerMsgs * msgs,
|
|
|
|
tr_direction direction);
|
|
|
|
|
2013-02-04 16:23:33 +00:00
|
|
|
time_t tr_peerMsgsGetConnectionAge (const tr_peerMsgs * msgs);
|
|
|
|
|
|
|
|
bool tr_peerMsgsIsUtpConnection (const tr_peerMsgs * msgs);
|
|
|
|
|
|
|
|
bool tr_peerMsgsIsEncrypted (const tr_peerMsgs * msgs);
|
|
|
|
|
|
|
|
bool tr_peerMsgsIsIncomingConnection (const tr_peerMsgs * msgs);
|
|
|
|
|
|
|
|
void tr_peerMsgsSetChoke (tr_peerMsgs * msgs,
|
|
|
|
bool peerIsChoked);
|
|
|
|
|
|
|
|
int tr_peerMsgsIsReadingBlock (const tr_peerMsgs * msgs,
|
|
|
|
tr_block_index_t block);
|
|
|
|
|
|
|
|
void tr_peerMsgsSetInterested (tr_peerMsgs * msgs,
|
|
|
|
bool clientIsInterested);
|
|
|
|
|
|
|
|
void tr_peerMsgsHave (tr_peerMsgs * msgs,
|
|
|
|
uint32_t pieceIndex);
|
|
|
|
|
|
|
|
void tr_peerMsgsPulse (tr_peerMsgs * msgs);
|
|
|
|
|
|
|
|
void tr_peerMsgsCancel (tr_peerMsgs * msgs,
|
|
|
|
tr_block_index_t block);
|
|
|
|
|
|
|
|
size_t tr_generateAllowedSet (tr_piece_index_t * setmePieces,
|
|
|
|
size_t desiredSetSize,
|
|
|
|
size_t pieceCount,
|
|
|
|
const uint8_t * infohash,
|
|
|
|
const struct tr_address * addr);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/* @} */
|
2007-09-20 16:32:01 +00:00
|
|
|
#endif
|