arvidn
|
8508506f16
|
don't run the SHA-1 and SHA-512 test vector tests by default, as they are slow
|
2019-04-02 20:03:34 +02:00 |
arvidn
|
1b79ce86e1
|
don't count connections and disconnections to ourself as sign of failure in tests
|
2019-03-30 10:08:38 +01:00 |
arvidn
|
51f77cc0a1
|
fix printing priorities in test_priority.cpp
|
2019-03-29 13:14:46 +01:00 |
arvidn
|
95937b28a7
|
add missing test torrent to tarball
|
2019-03-28 20:25:11 +01:00 |
arvidn
|
5260128933
|
minor improvement to test_tracker. fix test output redirection on windows. tweak starting of web server in tests
|
2019-03-28 00:22:05 +01:00 |
arvidn
|
64600f444b
|
improve sanitizer rule in Jamfile. Some fixes for new clang sanitizr 'implicit-conversion'
|
2019-03-26 10:14:06 +01:00 |
arvidn
|
2990532d10
|
reduce the amount of hacky path/string handling code
|
2019-03-22 07:48:07 +01:00 |
Arvid Norberg
|
57cd2882d4
|
update symlinks to conform to BEP 47
|
2019-03-19 10:05:06 +01:00 |
arvidn
|
5f85e40193
|
remove old, hacky and unused split_string() function
|
2019-03-19 09:27:06 +01:00 |
Alden Torres
|
620eb39f2c
|
missing changes
|
2019-03-11 14:38:26 +01:00 |
arvidn
|
381d5a3c5d
|
add support for creating symlinks, for torrents with symlinks in them
|
2019-03-05 22:53:56 +01:00 |
Arvid Norberg
|
e106602f49
|
allow padfiles of equal size to share the same filename
|
2019-03-01 16:09:53 +01:00 |
Arvid Norberg
|
ed867e0062
|
improve test_torrent_info to make it easier to add more test cases for duplicate files
|
2019-03-01 16:09:53 +01:00 |
Arvid Norberg
|
57017e3ace
|
noreturn attribute is standard in C++11
|
2019-02-27 17:11:15 +01:00 |
arvidn
|
4473a8d0ce
|
fix seed_mode flag
|
2019-02-24 10:20:20 +01:00 |
arvidn
|
3891f77253
|
fix naming in test_dht. don't include deprecated header (lazy_entry) unless required
|
2019-02-21 23:05:42 +01:00 |
arvidn
|
7f2a78d0c9
|
make random_shuffle() take a range instead of two iterators. use random_bytes() instead of std::generate() and random_byte(). Remove unused hasher.hpp includes
|
2019-02-19 01:48:08 +01:00 |
arvidn
|
1b7884b220
|
support numeric suffixes to magnet link parameter names
|
2019-02-15 23:15:38 +01:00 |
arvidn
|
8fc69f5d2e
|
don't copy a vector into the async_write operation for iovec. Since the chained_buffer will own the vector anyway, just make it return a span and copy that
|
2019-02-09 17:45:47 +01:00 |
Alden Torres
|
88d018bb67
|
simple test for file_progress::update
|
2019-01-13 02:40:15 +01:00 |
arvidn
|
f4f1425115
|
use UNC paths pervasively on windows
|
2019-01-12 21:00:40 +01:00 |
arvidn
|
8b067310b1
|
merged RC_1_1 into master
|
2019-01-12 00:53:45 +01:00 |
arvidn
|
a112c8e67b
|
add assignment operator to span
|
2018-12-12 19:55:07 +01:00 |
arvidn
|
6debd872de
|
tweak heuristic of how to interpret url seeds in multi-file torrents
|
2018-12-11 12:47:43 +01:00 |
arvidn
|
7e13b34158
|
fix build i2p=on,off configurations
|
2018-12-07 13:36:53 +01:00 |
arvidn
|
eb5f29a79c
|
make stack_allocator::format_string() grow the buffer for large strings
|
2018-12-02 04:03:03 +01:00 |
arvidn
|
50ae1838e6
|
wrap inclusion of windows.h with appropriate defines
|
2018-11-21 10:09:23 +01:00 |
arvidn
|
1f9178f882
|
clean up test_fast_extension to use span
|
2018-11-21 10:08:01 +01:00 |
arvidn
|
9ae4aedeb0
|
deprecate slow bdecode() function
|
2018-11-19 09:09:55 +01:00 |
arvidn
|
8841c58435
|
improve interoperability between bdecode_node and entry (for encoding). Make it possible to construct an entry from a bdecode_node. move comparison operators out of entry to support implicit conversions from bdecode_node
|
2018-11-18 22:54:36 +01:00 |
arvidn
|
eab1055938
|
more warnings on appveyor
|
2018-11-18 11:49:45 +01:00 |
arvidn
|
7538d68086
|
clean up integer_to_str() function
|
2018-11-17 17:21:06 +01:00 |
arvidn
|
8c18baf10e
|
check for self-assignment in bitfield operator=
|
2018-11-16 14:23:46 +01:00 |
arvidn
|
5383854768
|
make span's and sha1_hash's index and size types signed (instead of unsigned). Specifically std::ptrdiff_t. In line with the direction of gsl span and reduce signed->unsigned casts
|
2018-11-16 14:06:22 +01:00 |
arvidn
|
eda8227d80
|
simplify test Jamfile by making each test its own target. Make test_lsd explicit and don't run it on travis OSX, since it can't get the socket there
|
2018-11-15 11:46:44 +01:00 |
arvidn
|
9d26f4f96c
|
fix asio-debugging build of dht test
|
2018-11-09 16:39:39 +01:00 |
arvidn
|
7bb828af6e
|
back-port the new test SSL cert from master
|
2018-11-09 11:55:42 +01:00 |
arvidn
|
e2f8bce539
|
add tests for low level I/O functions, read_* and write_*. also turn some raw for loops into range-for loops in the I/O functions
|
2018-11-07 14:35:30 +01:00 |
arvidn
|
1f9e74f40d
|
merged RC_1_1 into master
|
2018-11-06 23:57:04 +01:00 |
Arvid Norberg
|
cec300234c
|
fix move_storage with save_path with a trailing slash
|
2018-11-06 23:46:18 +01:00 |
arvidn
|
6be8b395da
|
some cleanup turning memcmp() and memcpy() into span comparisons and std::copy(). some more use of random_bytes() instead of loops.
|
2018-11-05 18:52:45 +01:00 |
arvidn
|
a0fa0b14bb
|
merged RC_1_1 into master
|
2018-11-04 19:12:22 +01:00 |
arvidn
|
014533da12
|
regenerate test SSL certificate
|
2018-11-03 01:49:10 +01:00 |
Arvid Norberg
|
939b380fda
|
fix build against boost-1.69
|
2018-11-02 11:10:26 +01:00 |
Eugene Shalygin
|
ba294e6594
|
cmake: backport changes from the master branch
This fixes generated pkg-config file and adds options to build python
bindings.
|
2018-10-31 00:17:36 +01:00 |
arvidn
|
3fb05d77d8
|
fix warnings
|
2018-10-20 20:56:26 +02:00 |
arvidn
|
c57b3be4cc
|
more lgtm fixes
|
2018-10-20 16:30:06 +02:00 |
arvidn
|
fbf9f73d43
|
add missing test files to tarball
|
2018-10-12 16:01:53 +02:00 |
Arvid Norberg
|
9758d2f08f
|
general cleanups of build files. Specifically to fix the propagation properties of _WIN32_WINNT, include missing CMake files in the tarball, and fix some risky ABI altering properties in CMake files
|
2018-10-12 10:06:59 +02:00 |
arvidn
|
8586023022
|
remove accidental files from repo
|
2018-10-11 11:18:54 +02:00 |