Skip to content

Commit

Permalink
update to libtorrent master HEAD, version 2.0.2-12 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldenml authored Feb 8, 2021
1 parent 6b9888d commit 2a10665
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "org.libtorrent4j"
version = "2.0.2-11"
version = "2.0.2-12"

java {
// using java 8 for android compatibility
Expand Down
16 changes: 16 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
2.0.2-12

* using libtorrent master
* fixed missing fseeko64 symbol at runtime
* fixed download priority type mismatch (now it is byte)
* lt:cleanup use of _FILE_OFFSET_BITS
* lt:ensure we don't attempt to make outgoing connections to RTC peers
* lt:don't announce stopped-event to websocket trackers. This (appears) to
solve a shutdown stall where we send stopped-announces after aborting
outstanding announces (including the persistent websocket connection).
The announce causes the persistent connection to be re-established and
sometimes not torn down properly again, to complete the shut down
* lt:remove misleading (and redundant) peer log message
* lt:increase the default setting for max_allowed_in_request_queue
from 500 to 2000. The entries in this queue are relatively small,
and allowing too few may negatively impact high-throughput peers
* lt:deprecate volatile_read_cache
* lt:source code cleanup, performance and stability

2.0.2-11

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/libtorrent4j/LibTorrent.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static String opensslVersion() {
* @return libtorrent4j version.
*/
public static String libtorrent4jVersion() {
return "2.0.2-11";
return "2.0.2-12";
}

/**
Expand Down
2 changes: 1 addition & 1 deletion swig/deps/libtorrent

0 comments on commit 2a10665

Please sign in to comment.