forked from premiere/premiere-libtorrent
fix to documentation generation to exclude private functions. fix makefile errors
This commit is contained in:
parent
57d619eec7
commit
08edf43b3f
|
@ -589,6 +589,8 @@ for filename in files:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if (l == 'namespace detail' or \
|
if (l == 'namespace detail' or \
|
||||||
|
l == 'namespace dht_detail' or \
|
||||||
|
l == 'namespace impl' or \
|
||||||
l == 'namespace aux') \
|
l == 'namespace aux') \
|
||||||
and not internal:
|
and not internal:
|
||||||
lno = consume_block(lno, lines)
|
lno = consume_block(lno, lines)
|
||||||
|
|
|
@ -88,12 +88,12 @@ struct key_desc_t
|
||||||
};
|
};
|
||||||
|
|
||||||
// generate an error response message
|
// generate an error response message
|
||||||
void TORRENT_EXPORT incoming_error(entry& e, char const* msg, int error_code = 203);
|
void incoming_error(entry& e, char const* msg, int error_code = 203);
|
||||||
|
|
||||||
// given a redundant name to avoid clashing with libtorrent::detail
|
// given a redundant name to avoid clashing with libtorrent::detail
|
||||||
namespace dht_detail {
|
namespace dht_detail {
|
||||||
|
|
||||||
bool TORRENT_EXPORT verify_message(bdecode_node const& msg, key_desc_t const desc[]
|
TORRENT_EXPORT bool verify_message(bdecode_node const& msg, key_desc_t const desc[]
|
||||||
, bdecode_node ret[], int size, char* error, int error_size);
|
, bdecode_node ret[], int size, char* error, int error_size);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -178,6 +178,7 @@ test_lsd_SOURCES = test_lsd.cpp
|
||||||
test_pe_crypto_SOURCES = test_pe_crypto.cpp
|
test_pe_crypto_SOURCES = test_pe_crypto.cpp
|
||||||
test_pex_SOURCES = test_pex.cpp
|
test_pex_SOURCES = test_pex.cpp
|
||||||
test_read_piece_SOURCES = test_read_piece.cpp
|
test_read_piece_SOURCES = test_read_piece.cpp
|
||||||
|
test_receive_buffer_SOURCES = test_receive_buffer.cpp
|
||||||
test_storage_SOURCES = test_storage.cpp
|
test_storage_SOURCES = test_storage.cpp
|
||||||
test_time_critical_SOURCES = test_time_critical.cpp
|
test_time_critical_SOURCES = test_time_critical.cpp
|
||||||
test_resume_SOURCES = test_resume.cpp
|
test_resume_SOURCES = test_resume.cpp
|
||||||
|
|
|
@ -12,7 +12,6 @@ EXTRA_DIST = Jamfile \
|
||||||
parse_dht_log.py \
|
parse_dht_log.py \
|
||||||
parse_dht_rtt.py \
|
parse_dht_rtt.py \
|
||||||
parse_dht_stats.py \
|
parse_dht_stats.py \
|
||||||
parse_access_log.py \
|
|
||||||
parse_disk_buffer_log.py\
|
parse_disk_buffer_log.py\
|
||||||
parse_disk_log.py \
|
parse_disk_log.py \
|
||||||
parse_memory_log.py \
|
parse_memory_log.py \
|
||||||
|
|
Loading…
Reference in New Issue