Update Tor version to 0.4.6.9 (#3993)

* Update Tor version to 0.4.6.9

* remove PluggableTransports
This commit is contained in:
rorp 2022-01-19 12:58:13 -08:00 committed by GitHub
parent 635bc453e4
commit 2dcbe73504
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 27021 additions and 14095 deletions

1
.gitignore vendored
View file

@ -35,7 +35,6 @@ bench_internal
tests
exhaustive_tests
gen_context
*.exe
!.gitignore
Makefile

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

BIN
tor/src/main/resources/linux_64/libcrypto.so.1.1 Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/linux_64/libevent-2.1.so.7 Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/linux_64/libssl.so.1.1 Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/linux_64/libstdc++/libstdc++.so.6 Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/osx_64/libevent-2.1.7.dylib Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/windows_64/libcrypto-1_1-x64.dll Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/windows_64/libevent-2-1-7.dll Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/windows_64/libevent_core-2-1-7.dll Normal file → Executable file

Binary file not shown.

Binary file not shown.

BIN
tor/src/main/resources/windows_64/libgcc_s_seh-1.dll Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/windows_64/libssl-1_1-x64.dll Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/windows_64/libssp-0.dll Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/windows_64/libwinpthread-1.dll Normal file → Executable file

Binary file not shown.

BIN
tor/src/main/resources/windows_64/zlib1.dll Normal file → Executable file

Binary file not shown.

View file

@ -77,7 +77,7 @@ class TorClient()(implicit
object TorClient extends Logging {
// made by doing ./tor --version
val TOR_VERSION = "Tor version 0.4.5.7 (git-83f895c015de5520)."
val TOR_VERSION = "Tor version 0.4.6.9 (git-ea2ada6d1459f829)."
val versionFileName = "version.txt"
lazy val DEFAULT_TOR_LOCATION: Option[File] = {
@ -193,7 +193,10 @@ object TorClient extends Logging {
"osx_64/tor",
"osx_64/tor.real"
),
fileList = Vector("osx_64/LICENSE", "osx_64/libevent-2.1.7.dylib")
fileList = Vector(
"osx_64/LICENSE",
"osx_64/libevent-2.1.7.dylib"
)
)
}