├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include ├── bencode.hpp └── bencode │ ├── algorithm.hpp │ ├── dict.hpp │ ├── exception.hpp │ ├── integer.hpp │ ├── istream.hpp │ ├── list.hpp │ ├── ostream.hpp │ ├── string.hpp │ ├── utility.hpp │ └── value.hpp └── test ├── CMakeLists.txt ├── dict_test.cpp ├── integer_test.cpp ├── istream_test.cpp ├── list_test.cpp ├── ostream_test.cpp ├── string_test.cpp └── utility_test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/README.md -------------------------------------------------------------------------------- /include/bencode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode.hpp -------------------------------------------------------------------------------- /include/bencode/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/algorithm.hpp -------------------------------------------------------------------------------- /include/bencode/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/dict.hpp -------------------------------------------------------------------------------- /include/bencode/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/exception.hpp -------------------------------------------------------------------------------- /include/bencode/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/integer.hpp -------------------------------------------------------------------------------- /include/bencode/istream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/istream.hpp -------------------------------------------------------------------------------- /include/bencode/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/list.hpp -------------------------------------------------------------------------------- /include/bencode/ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/ostream.hpp -------------------------------------------------------------------------------- /include/bencode/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/string.hpp -------------------------------------------------------------------------------- /include/bencode/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/utility.hpp -------------------------------------------------------------------------------- /include/bencode/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/include/bencode/value.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/dict_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/dict_test.cpp -------------------------------------------------------------------------------- /test/integer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/integer_test.cpp -------------------------------------------------------------------------------- /test/istream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/istream_test.cpp -------------------------------------------------------------------------------- /test/list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/list_test.cpp -------------------------------------------------------------------------------- /test/ostream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/ostream_test.cpp -------------------------------------------------------------------------------- /test/string_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/string_test.cpp -------------------------------------------------------------------------------- /test/utility_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ybubnov/libbencode/HEAD/test/utility_test.cpp --------------------------------------------------------------------------------