2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2010 Johannes Lieder.
|
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2010-05-01 16:04:00 +00:00
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2010-09-23 13:29:41 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2010-09-23 13:29:41 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int tr_lpdInit(tr_session*, tr_address*);
|
|
|
|
void tr_lpdUninit(tr_session*);
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_lpdSendAnnounce(tr_torrent const*);
|
2010-05-01 16:04:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @} */
|