Last change
on this file since 7456 was
7456,
checked in by charles, 12 years ago
|
(trunk libT) minor cleanups found while diffing for backport to 1.4x in r7455
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
2.2 KB
|
Line | |
---|
1 | /* |
---|
2 | * This file Copyright (C) 2007-2008 Charles Kerr <charles@transmissionbt.com> |
---|
3 | * |
---|
4 | * This file is licensed by the GPL version 2. Works owned by the |
---|
5 | * Transmission project are granted a special exemption to clause 2(b) |
---|
6 | * so that the bulk of its code can remain under the MIT license. |
---|
7 | * This exemption does not extend to derived works not owned by |
---|
8 | * the Transmission project. |
---|
9 | * |
---|
10 | * $Id: peer-msgs.h 7456 2008-12-22 00:52:44Z charles $ |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef __TRANSMISSION__ |
---|
14 | #error only libtransmission should #include this header. |
---|
15 | #endif |
---|
16 | |
---|
17 | #ifndef TR_PEER_MSGS_H |
---|
18 | #define TR_PEER_MSGS_H |
---|
19 | |
---|
20 | #include <inttypes.h> |
---|
21 | #include "peer-common.h" |
---|
22 | #include "publish.h" |
---|
23 | |
---|
24 | struct tr_torrent; |
---|
25 | struct tr_peer; |
---|
26 | struct tr_bitfield; |
---|
27 | |
---|
28 | typedef struct tr_peermsgs tr_peermsgs; |
---|
29 | |
---|
30 | tr_peermsgs* tr_peerMsgsNew( struct tr_torrent * torrent, |
---|
31 | struct tr_peer * peer, |
---|
32 | tr_delivery_func func, |
---|
33 | void * user, |
---|
34 | tr_publisher_tag * setme ); |
---|
35 | |
---|
36 | |
---|
37 | void tr_peerMsgsSetChoke( tr_peermsgs *, |
---|
38 | int doChoke ); |
---|
39 | |
---|
40 | void tr_peerMsgsHave( tr_peermsgs * msgs, |
---|
41 | uint32_t pieceIndex ); |
---|
42 | |
---|
43 | void tr_peerMsgsPulse( tr_peermsgs * msgs ); |
---|
44 | |
---|
45 | void tr_peerMsgsCancel( tr_peermsgs * msgs, |
---|
46 | uint32_t pieceIndex, |
---|
47 | uint32_t offset, |
---|
48 | uint32_t length ); |
---|
49 | |
---|
50 | |
---|
51 | void tr_peerMsgsFree( tr_peermsgs* ); |
---|
52 | |
---|
53 | tr_addreq_t tr_peerMsgsAddRequest( tr_peermsgs * peer, |
---|
54 | uint32_t pieceIndex, |
---|
55 | uint32_t offset, |
---|
56 | uint32_t length ); |
---|
57 | |
---|
58 | void tr_peerMsgsUnsubscribe( tr_peermsgs * peer, |
---|
59 | tr_publisher_tag tag ); |
---|
60 | |
---|
61 | size_t tr_generateAllowedSet( tr_piece_index_t * setmePieces, |
---|
62 | size_t desiredSetSize, |
---|
63 | size_t pieceCount, |
---|
64 | const uint8_t * infohash, |
---|
65 | const tr_address * addr ); |
---|
66 | |
---|
67 | |
---|
68 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.