]> git.ipfire.org Git - thirdparty/tor.git/commit
rust implementation of protover
authorChelsea Holland Komlo <me@chelseakomlo.com>
Wed, 27 Sep 2017 19:48:07 +0000 (19:48 +0000)
committerNick Mathewson <nickm@torproject.org>
Fri, 27 Oct 2017 14:02:08 +0000 (10:02 -0400)
commitd1820c1516a31a149fc51a9e5126bf899e4c4e08
treeea2ed5c2259f87ca078378eff4f78c9bf0aa50da
parent5418aa84eec9f08af7ab7b68cbc9145750ad0a1b
rust implementation of protover
29 files changed:
Makefile.am
configure.ac
src/common/include.am
src/common/rust_types.c [new file with mode: 0644]
src/common/rust_types.h [new file with mode: 0644]
src/or/include.am
src/or/protover.c
src/or/protover.h
src/or/protover_rust.c [new file with mode: 0644]
src/rust/Cargo.lock
src/rust/Cargo.toml
src/rust/c_string/Cargo.toml [new file with mode: 0644]
src/rust/c_string/ffi.rs [new file with mode: 0644]
src/rust/c_string/include.am [new file with mode: 0644]
src/rust/external/Cargo.toml [new file with mode: 0644]
src/rust/external/external.rs [new file with mode: 0644]
src/rust/external/lib.rs [new file with mode: 0644]
src/rust/include.am
src/rust/protover/Cargo.toml [new file with mode: 0644]
src/rust/protover/ffi.rs [new file with mode: 0644]
src/rust/protover/include.am [new file with mode: 0644]
src/rust/protover/lib.rs [new file with mode: 0644]
src/rust/protover/protover.rs [new file with mode: 0644]
src/rust/protover/tests/protover.rs [new file with mode: 0644]
src/rust/smartlist/Cargo.toml [new file with mode: 0644]
src/rust/smartlist/lib.rs [new file with mode: 0644]
src/rust/smartlist/smartlist.rs [new file with mode: 0644]
src/rust/tor_util/Cargo.toml
src/test/test_protover.c