Last change
on this file since 7455 was
7455,
checked in by charles, 12 years ago
|
(1.4x libT) backport handshake, peer, bandwidth, peer-io to 1.4x.
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
1.7 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: handshake.h 7455 2008-12-22 00:51:14Z charles $ |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef __TRANSMISSION__ |
---|
14 | #error only libtransmission should #include this header. |
---|
15 | #endif |
---|
16 | |
---|
17 | #ifndef TR_HANDSHAKE_H |
---|
18 | #define TR_HANDSHAKE_H |
---|
19 | |
---|
20 | #include "transmission.h" |
---|
21 | #include "net.h" |
---|
22 | |
---|
23 | struct tr_peerIo; |
---|
24 | typedef struct tr_handshake tr_handshake; |
---|
25 | |
---|
26 | /* returns true on success, false on error */ |
---|
27 | typedef tr_bool ( *handshakeDoneCB )( struct tr_handshake * handshake, |
---|
28 | struct tr_peerIo * io, |
---|
29 | int isConnected, |
---|
30 | const uint8_t * peerId, |
---|
31 | void * userData ); |
---|
32 | |
---|
33 | tr_handshake * tr_handshakeNew( struct tr_peerIo * io, |
---|
34 | tr_encryption_mode encryptionMode, |
---|
35 | handshakeDoneCB doneCB, |
---|
36 | void * doneUserData ); |
---|
37 | |
---|
38 | const tr_address * tr_handshakeGetAddr( const struct tr_handshake * handshake, |
---|
39 | tr_port * port ); |
---|
40 | |
---|
41 | void tr_handshakeFree( tr_handshake * handshake ); |
---|
42 | |
---|
43 | void tr_handshakeAbort( tr_handshake * handshake ); |
---|
44 | |
---|
45 | struct tr_peerIo* tr_handshakeGetIO( tr_handshake * handshake ); |
---|
46 | |
---|
47 | struct tr_peerIo* tr_handshakeStealIO( tr_handshake * handshake ); |
---|
48 | |
---|
49 | |
---|
50 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.