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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2007-09-20 16:32:01 +00:00
|
|
|
|
|
|
|
#include "transmission.h"
|
2008-12-22 00:52:44 +00:00
|
|
|
#include "net.h"
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/** @addtogroup peers Peers
|
|
|
|
@{ */
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_peerIo;
|
2009-05-29 19:17:12 +00:00
|
|
|
|
|
|
|
/** @brief opaque struct holding hanshake state information.
|
|
|
|
freed when the handshake is completed. */
|
2007-09-20 16:32:01 +00:00
|
|
|
typedef struct tr_handshake tr_handshake;
|
|
|
|
|
2008-09-19 17:03:25 +00:00
|
|
|
/* returns true on success, false on error */
|
2017-04-19 12:04:45 +00:00
|
|
|
typedef bool (* handshakeDoneCB)(struct tr_handshake* handshake, struct tr_peerIo* io, bool readAnythingFromPeer,
|
2017-04-20 16:02:19 +00:00
|
|
|
bool isConnected, uint8_t const* peerId, void* userData);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/** @brief instantiate a new handshake */
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_handshake* tr_handshakeNew(struct tr_peerIo* io, tr_encryption_mode encryptionMode, handshakeDoneCB doneCB,
|
|
|
|
void* doneUserData);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
tr_address const* tr_handshakeGetAddr(struct tr_handshake const* handshake, tr_port* port);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_handshakeAbort(tr_handshake* handshake);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_peerIo* tr_handshakeGetIO(tr_handshake* handshake);
|
2008-12-20 22:19:34 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_peerIo* tr_handshakeStealIO(tr_handshake* handshake);
|
2008-12-20 22:19:34 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/** @} */
|