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__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
#ifndef TR_HANDSHAKE_H
|
|
|
|
#define TR_HANDSHAKE_H
|
|
|
|
|
|
|
|
#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 */
|
2012-12-05 17:29:46 +00:00
|
|
|
typedef bool (*handshakeDoneCB)(struct tr_handshake * handshake,
|
2011-03-22 15:19:54 +00:00
|
|
|
struct tr_peerIo * io,
|
|
|
|
bool readAnythingFromPeer,
|
|
|
|
bool isConnected,
|
|
|
|
const uint8_t * peerId,
|
2012-12-05 17:29:46 +00:00
|
|
|
void * userData);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/** @brief instantiate a new handshake */
|
2012-12-05 17:29:46 +00:00
|
|
|
tr_handshake * tr_handshakeNew (struct tr_peerIo * io,
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_encryption_mode encryptionMode,
|
|
|
|
handshakeDoneCB doneCB,
|
2012-12-05 17:29:46 +00:00
|
|
|
void * doneUserData);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
const tr_address * tr_handshakeGetAddr (const struct tr_handshake * handshake,
|
|
|
|
tr_port * port);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
void tr_handshakeAbort (tr_handshake * handshake);
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
struct tr_peerIo* tr_handshakeGetIO (tr_handshake * handshake);
|
2008-09-17 19:44:24 +00:00
|
|
|
|
2012-12-05 17:29:46 +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
|
|
|
/** @} */
|
2007-09-20 16:32:01 +00:00
|
|
|
#endif
|