2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2008-2022 Mnemosyne LLC.
|
2022-08-08 18:05:39 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
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
|
|
|
|
|
2022-04-21 15:58:13 +00:00
|
|
|
#include "net.h" // tr_port
|
2009-05-29 19:17:12 +00:00
|
|
|
|
2009-05-14 13:42:29 +00:00
|
|
|
struct tr_bindsockets;
|
2022-04-21 15:58:13 +00:00
|
|
|
struct tr_session;
|
2021-10-06 14:26:07 +00:00
|
|
|
struct tr_shared;
|
2007-07-30 18:04:10 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
tr_shared* tr_sharedInit(tr_session&);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
void tr_sharedClose(tr_session&);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
void tr_sharedPortChanged(tr_session&);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2022-08-03 06:15:37 +00:00
|
|
|
void tr_sharedTraversalEnable(tr_shared*, bool is_enabled);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
tr_port tr_sharedGetPeerPort(tr_shared const* s);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sharedTraversalIsEnabled(tr_shared const* s);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
int tr_sharedTraversalStatus(tr_shared const*);
|