[1] | 1 | /****************************************************************************** |
---|
[260] | 2 | * $Id: peer.h 2231 2007-06-29 05:45:17Z charles $ |
---|
[1] | 3 | * |
---|
[1579] | 4 | * Copyright (c) 2005-2007 Transmission authors and contributors |
---|
[260] | 5 | * |
---|
[1] | 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
| 7 | * copy of this software and associated documentation files (the "Software"), |
---|
| 8 | * to deal in the Software without restriction, including without limitation |
---|
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
| 11 | * Software is furnished to do so, subject to the following conditions: |
---|
| 12 | * |
---|
| 13 | * The above copyright notice and this permission notice shall be included in |
---|
| 14 | * all copies or substantial portions of the Software. |
---|
| 15 | * |
---|
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
| 19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
| 21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
| 22 | * DEALINGS IN THE SOFTWARE. |
---|
| 23 | *****************************************************************************/ |
---|
| 24 | |
---|
| 25 | #ifndef TR_PEER_H |
---|
| 26 | #define TR_PEER_H 1 |
---|
| 27 | |
---|
[1403] | 28 | #include "transmission.h" |
---|
| 29 | |
---|
[764] | 30 | typedef struct tr_peer_s tr_peer_t; |
---|
| 31 | |
---|
[2177] | 32 | tr_peer_t * tr_peerInit ( struct in_addr, in_port_t, int sock, int ); |
---|
| 33 | void tr_peerDestroy ( tr_peer_t * ); |
---|
| 34 | const char *tr_peerClient ( tr_peer_t * ); |
---|
| 35 | void tr_peerSetPrivate ( tr_peer_t *, int ); |
---|
| 36 | void tr_peerSetTorrent ( tr_peer_t *, tr_torrent_t * ); |
---|
| 37 | void tr_peerSentBlockToUs ( tr_peer_t *, int byteCount ); |
---|
| 38 | void tr_peerGotBlockFromUs ( tr_peer_t *, int byteCount ); |
---|
| 39 | int tr_peerRead ( tr_peer_t * ); |
---|
| 40 | uint64_t tr_peerDate ( const tr_peer_t * ); |
---|
| 41 | const uint8_t * tr_peerHash ( const tr_peer_t * ); |
---|
| 42 | int tr_peerPulse ( tr_peer_t * ); |
---|
| 43 | int tr_peerIsConnected ( const tr_peer_t * ); |
---|
| 44 | int tr_peerIsFrom ( const tr_peer_t * ); |
---|
| 45 | int tr_peerAmChoking ( const tr_peer_t * ); |
---|
| 46 | int tr_peerAmInterested ( const tr_peer_t * ); |
---|
| 47 | int tr_peerIsChoking ( const tr_peer_t * ); |
---|
[2231] | 48 | int tr_peerTimesChoked ( const tr_peer_t * ); |
---|
[2177] | 49 | int tr_peerIsInterested ( const tr_peer_t * ); |
---|
| 50 | float tr_peerProgress ( const tr_peer_t * ); |
---|
| 51 | int tr_peerPort ( const tr_peer_t * ); |
---|
| 52 | int tr_peerHasPiece ( const tr_peer_t *, int pieceIndex ); |
---|
| 53 | float tr_peerDownloadRate ( const tr_peer_t * ); |
---|
| 54 | float tr_peerUploadRate ( const tr_peer_t * ); |
---|
| 55 | void tr_peerChoke ( tr_peer_t * ); |
---|
| 56 | void tr_peerUnchoke ( tr_peer_t * ); |
---|
| 57 | uint64_t tr_peerLastChoke ( const tr_peer_t * ); |
---|
| 58 | void tr_peerSetOptimistic ( tr_peer_t *, int ); |
---|
| 59 | int tr_peerIsOptimistic ( const tr_peer_t * ); |
---|
| 60 | void tr_peerBlame ( tr_peer_t *, int piece, int success ); |
---|
| 61 | struct in_addr * tr_peerAddress ( tr_peer_t * ); |
---|
| 62 | int tr_peerGetConnectable ( const tr_torrent_t *, uint8_t ** ); |
---|
[1] | 63 | |
---|
[2177] | 64 | void tr_swiftPulse ( tr_handle_t * ); |
---|
| 65 | |
---|
[1] | 66 | #endif |
---|