52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
/*
|
|
* This file Copyright (C) 2017 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __TRANSMISSION__
|
|
#error only libtransmission should #include this header.
|
|
#endif
|
|
|
|
#include "net.h"
|
|
#include "tr-assert.h"
|
|
#include "tr-macros.h"
|
|
|
|
TR_BEGIN_DECLS
|
|
|
|
enum tr_peer_socket_type
|
|
{
|
|
TR_PEER_SOCKET_TYPE_NONE,
|
|
TR_PEER_SOCKET_TYPE_TCP,
|
|
TR_PEER_SOCKET_TYPE_UTP
|
|
};
|
|
|
|
union tr_peer_socket_handle
|
|
{
|
|
tr_socket_t tcp;
|
|
struct UTPSocket* utp;
|
|
};
|
|
|
|
struct tr_peer_socket
|
|
{
|
|
enum tr_peer_socket_type type;
|
|
union tr_peer_socket_handle handle;
|
|
};
|
|
|
|
struct tr_peer_socket tr_peer_socket_tcp_create(tr_socket_t const handle);
|
|
|
|
struct tr_peer_socket tr_peer_socket_utp_create(struct UTPSocket* const handle);
|
|
|
|
struct tr_session;
|
|
struct tr_address;
|
|
|
|
struct tr_peer_socket tr_netOpenPeerSocket(tr_session* session, tr_address const* addr, tr_port port, bool clientIsSeed);
|
|
|
|
struct tr_peer_socket tr_netOpenPeerUTPSocket(tr_session* session, tr_address const* addr, tr_port port, bool clientIsSeed);
|
|
|
|
TR_END_DECLS
|