├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeModules ├── ArgumentParser.cmake ├── FindBoost.cmake ├── FindReadline.cmake ├── FindVLD.cmake ├── FindWt.cmake ├── ParseLibraryList.cmake ├── SetupTargetMacros.cmake ├── UseLibraryMacros.cmake └── VersionMacros.cmake ├── GitVersionGen ├── GetGitRevisionDescription.cmake └── GetGitRevisionDescription.cmake.in ├── README-ecc.md ├── README.md ├── fc.natvis ├── include └── fc │ ├── actor.hpp │ ├── aligned.hpp │ ├── any.hpp │ ├── api.hpp │ ├── array.hpp │ ├── asio.hpp │ ├── bitutil.hpp │ ├── bloom_filter.hpp │ ├── compress │ ├── smaz.hpp │ └── zlib.hpp │ ├── container │ ├── deque.hpp │ ├── deque_fwd.hpp │ ├── flat.hpp │ └── flat_fwd.hpp │ ├── crypto │ ├── aes.hpp │ ├── base32.hpp │ ├── base36.hpp │ ├── base58.hpp │ ├── base64.hpp │ ├── bigint.hpp │ ├── blowfish.hpp │ ├── city.hpp │ ├── dh.hpp │ ├── digest.hpp │ ├── elliptic.hpp │ ├── hex.hpp │ ├── hmac.hpp │ ├── openssl.hpp │ ├── pke.hpp │ ├── rand.hpp │ ├── ripemd160.hpp │ ├── sha1.hpp │ ├── sha224.hpp │ ├── sha256.hpp │ └── sha512.hpp │ ├── exception │ └── exception.hpp │ ├── filesystem.hpp │ ├── fwd.hpp │ ├── fwd_impl.hpp │ ├── git_revision.hpp │ ├── interprocess │ ├── file_mapping.hpp │ ├── iprocess.hpp │ ├── mmap_struct.hpp │ ├── process.hpp │ └── signals.hpp │ ├── io │ ├── buffered_iostream.hpp │ ├── console.hpp │ ├── datastream.hpp │ ├── datastream_back.hpp │ ├── enum_type.hpp │ ├── fstream.hpp │ ├── iobuffer.hpp │ ├── iostream.hpp │ ├── json.hpp │ ├── json_relaxed.hpp │ ├── raw.hpp │ ├── raw_fwd.hpp │ ├── raw_unpack_file.hpp │ ├── raw_variant.hpp │ ├── sstream.hpp │ ├── stdio.hpp │ └── varint.hpp │ ├── log │ ├── appender.hpp │ ├── console_appender.hpp │ ├── file_appender.hpp │ ├── gelf_appender.hpp │ ├── log_message.hpp │ ├── logger.hpp │ └── logger_config.hpp │ ├── make_fused.hpp │ ├── network │ ├── gntp.hpp │ ├── http │ │ ├── connection.hpp │ │ ├── server.hpp │ │ └── websocket.hpp │ ├── ip.hpp │ ├── ntp.hpp │ ├── rate_limiting.hpp │ ├── resolve.hpp │ ├── tcp_socket.hpp │ ├── tcp_socket_io_hooks.hpp │ ├── udp_socket.hpp │ ├── udt_socket.hpp │ └── url.hpp │ ├── noncopyable.hpp │ ├── optional.hpp │ ├── platform_independence.hpp │ ├── real128.hpp │ ├── reflect │ ├── reflect.hpp │ ├── typename.hpp │ └── variant.hpp │ ├── rpc │ ├── api_connection.hpp │ ├── cli.hpp │ ├── http_api.hpp │ ├── json_connection.hpp │ ├── state.hpp │ ├── variant_connection.hpp │ ├── variant_stream.hpp │ └── websocket_api.hpp │ ├── safe.hpp │ ├── shared_ptr.hpp │ ├── signal.hpp │ ├── signals.hpp │ ├── smart_ref_fwd.hpp │ ├── smart_ref_impl.hpp │ ├── ssh │ ├── client.hpp │ ├── error.hpp │ └── process.hpp │ ├── static_variant.hpp │ ├── string.hpp │ ├── thread │ ├── future.hpp │ ├── mutex.hpp │ ├── non_preemptable_scope_check.hpp │ ├── priority.hpp │ ├── scoped_lock.hpp │ ├── spin_lock.hpp │ ├── spin_yield_lock.hpp │ ├── task.hpp │ ├── thread.hpp │ ├── thread_specific.hpp │ ├── unique_lock.hpp │ └── wait_condition.hpp │ ├── time.hpp │ ├── tuple.hpp │ ├── uint128.hpp │ ├── unique_ptr.hpp │ ├── utf8.hpp │ ├── utility.hpp │ ├── variant.hpp │ ├── variant_object.hpp │ ├── vector.hpp │ ├── vector_fwd.hpp │ └── wait_any.hpp ├── src ├── asio.cpp ├── byteswap.hpp ├── compress │ ├── miniz.c │ ├── smaz.cpp │ └── zlib.cpp ├── crypto │ ├── _digest_common.cpp │ ├── _digest_common.hpp │ ├── _elliptic_impl_priv.hpp │ ├── _elliptic_impl_pub.hpp │ ├── aes.cpp │ ├── base32.cpp │ ├── base36.cpp │ ├── base58.cpp │ ├── base64.cpp │ ├── bigint.cpp │ ├── blowfish.cpp │ ├── city.cpp │ ├── crc.cpp │ ├── dh.cpp │ ├── elliptic_common.cpp │ ├── elliptic_impl_priv.cpp │ ├── elliptic_impl_pub.cpp │ ├── elliptic_mixed.cpp │ ├── elliptic_openssl.cpp │ ├── elliptic_secp256k1.cpp │ ├── hex.cpp │ ├── openssl.cpp │ ├── pke.cpp │ ├── rand.cpp │ ├── ripemd160.cpp │ ├── sha1.cpp │ ├── sha224.cpp │ ├── sha256.cpp │ └── sha512.cpp ├── exception.cpp ├── filesystem.cpp ├── git_revision.cpp.in ├── interprocess │ ├── file_mapping.cpp │ ├── mmap_struct.cpp │ ├── process.cpp │ └── signals.cpp ├── io │ ├── buffered_iostream.cpp │ ├── console.cpp │ ├── datastream.cpp │ ├── fstream.cpp │ ├── iostream.cpp │ ├── json.cpp │ ├── sstream.cpp │ └── varint.cpp ├── log │ ├── appender.cpp │ ├── console_appender.cpp │ ├── console_defines.h │ ├── file_appender.cpp │ ├── gelf_appender.cpp │ ├── log_message.cpp │ ├── logger.cpp │ └── logger_config.cpp ├── network │ ├── gntp.cpp │ ├── http │ │ ├── http_connection.cpp │ │ ├── http_server.cpp │ │ └── websocket.cpp │ ├── ip.cpp │ ├── ntp.cpp │ ├── rate_limiting.cpp │ ├── resolve.cpp │ ├── tcp_socket.cpp │ ├── udp_socket.cpp │ ├── udt_socket.cpp │ └── url.cpp ├── real128.cpp ├── rpc │ ├── cli.cpp │ ├── http_api.cpp │ ├── json_connection.cpp │ ├── state.cpp │ └── websocket_api.cpp ├── shared_ptr.cpp ├── ssh │ ├── client.cpp │ ├── client_impl.hpp │ └── process.cpp ├── string.cpp ├── thread │ ├── context.hpp │ ├── future.cpp │ ├── mutex.cpp │ ├── non_preemptable_scope_check.cpp │ ├── spin_lock.cpp │ ├── spin_yield_lock.cpp │ ├── task.cpp │ ├── thread.cpp │ ├── thread_d.hpp │ └── thread_specific.cpp ├── time.cpp ├── uint128.cpp ├── utf8.cpp ├── utf8 │ ├── ReleaseNotes │ ├── checked.h │ ├── core.h │ ├── unchecked.h │ └── utf8cpp.html ├── variant.cpp └── variant_object.cpp ├── tests ├── all_tests.cpp ├── api.cpp ├── blinding_test.cpp ├── bloom_test.cpp ├── compress │ └── compress.cpp ├── crypto │ ├── aes_test.cpp │ ├── base_n_tests.cpp │ ├── bigint_test.cpp │ ├── blind.cpp │ ├── blowfish_test.cpp │ ├── dh_test.cpp │ ├── ecc-interop.sh │ ├── ecc_test.cpp │ ├── rand_test.cpp │ └── sha_tests.cpp ├── hmac_test.cpp ├── network │ ├── http │ │ └── websocket_test.cpp │ └── ntp_test.cpp ├── rate_limiting.cpp ├── real128_test.cpp ├── rpc.cpp ├── sleep.cpp ├── thread │ └── task_cancel.cpp ├── udt_client.cpp ├── udt_server.cpp ├── udtc.cpp ├── udts.cpp └── utf8_test.cpp └── vendor ├── boost_1.51 ├── include │ └── boost │ │ ├── process.hpp │ │ └── process │ │ ├── all.hpp │ │ ├── child.hpp │ │ ├── config.hpp │ │ ├── context.hpp │ │ ├── detail │ │ ├── basic_status.hpp │ │ ├── basic_status_service.hpp │ │ ├── posix_helpers.hpp │ │ ├── status_impl.hpp │ │ ├── systembuf.hpp │ │ └── windows_helpers.hpp │ │ ├── environment.hpp │ │ ├── handle.hpp │ │ ├── operations.hpp │ │ ├── pid_type.hpp │ │ ├── pipe.hpp │ │ ├── pistream.hpp │ │ ├── postream.hpp │ │ ├── process.hpp │ │ ├── self.hpp │ │ ├── status.hpp │ │ ├── stream_behavior.hpp │ │ ├── stream_ends.hpp │ │ ├── stream_id.hpp │ │ └── stream_type.hpp └── libs │ └── context │ ├── asm │ ├── fcontext_arm_aapcs_elf_gas.S │ ├── fcontext_i386_ms_pe_masm.asm │ ├── fcontext_i386_sysv_elf_gas.S │ ├── fcontext_i386_sysv_macho_gas.S │ ├── fcontext_mips32_o32_elf_gas.S │ ├── fcontext_ppc32_sysv_elf_gas.S │ ├── fcontext_ppc64_sysv_elf_gas.S │ ├── fcontext_x86_64_ms_pe_masm.asm │ ├── fcontext_x86_64_sysv_elf_gas.S │ └── fcontext_x86_64_sysv_macho_gas.S │ ├── fcontext.cpp │ ├── seh.cpp │ ├── stack_allocator_posix.cpp │ ├── stack_allocator_windows.cpp │ ├── stack_utils_posix.cpp │ └── stack_utils_windows.cpp ├── cyoencode-1.0.2 ├── LICENSE.TXT ├── README.TXT └── src │ ├── CyoDecode.c │ ├── CyoDecode.h │ ├── CyoEncode.c │ ├── CyoEncode.h │ ├── build.sh │ ├── cyoencode-vc100.vcxproj │ ├── cyoencode-vc71.vcproj │ ├── cyoencode-vc80.vcproj │ ├── cyoencode-vc90.vcproj │ └── test.c └── udt4 ├── CMakeLists.txt ├── LICENSE.txt ├── README.txt └── src ├── api.cpp ├── api.h ├── buffer.cpp ├── buffer.h ├── cache.cpp ├── cache.h ├── ccc.cpp ├── ccc.h ├── channel.cpp ├── channel.h ├── common.cpp ├── common.h ├── core.cpp ├── core.h ├── epoll.cpp ├── epoll.h ├── list.cpp ├── list.h ├── md5.cpp ├── md5.h ├── packet.cpp ├── packet.h ├── queue.cpp ├── queue.h ├── udt.h ├── window.cpp └── window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/ArgumentParser.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/ArgumentParser.cmake -------------------------------------------------------------------------------- /CMakeModules/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/FindBoost.cmake -------------------------------------------------------------------------------- /CMakeModules/FindReadline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/FindReadline.cmake -------------------------------------------------------------------------------- /CMakeModules/FindVLD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/FindVLD.cmake -------------------------------------------------------------------------------- /CMakeModules/FindWt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/FindWt.cmake -------------------------------------------------------------------------------- /CMakeModules/ParseLibraryList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/ParseLibraryList.cmake -------------------------------------------------------------------------------- /CMakeModules/SetupTargetMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/SetupTargetMacros.cmake -------------------------------------------------------------------------------- /CMakeModules/UseLibraryMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/UseLibraryMacros.cmake -------------------------------------------------------------------------------- /CMakeModules/VersionMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/CMakeModules/VersionMacros.cmake -------------------------------------------------------------------------------- /GitVersionGen/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/GitVersionGen/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /GitVersionGen/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/GitVersionGen/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /README-ecc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/README-ecc.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/README.md -------------------------------------------------------------------------------- /fc.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/fc.natvis -------------------------------------------------------------------------------- /include/fc/actor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/actor.hpp -------------------------------------------------------------------------------- /include/fc/aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/aligned.hpp -------------------------------------------------------------------------------- /include/fc/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/any.hpp -------------------------------------------------------------------------------- /include/fc/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/api.hpp -------------------------------------------------------------------------------- /include/fc/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/array.hpp -------------------------------------------------------------------------------- /include/fc/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/asio.hpp -------------------------------------------------------------------------------- /include/fc/bitutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/bitutil.hpp -------------------------------------------------------------------------------- /include/fc/bloom_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/bloom_filter.hpp -------------------------------------------------------------------------------- /include/fc/compress/smaz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/compress/smaz.hpp -------------------------------------------------------------------------------- /include/fc/compress/zlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/compress/zlib.hpp -------------------------------------------------------------------------------- /include/fc/container/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/container/deque.hpp -------------------------------------------------------------------------------- /include/fc/container/deque_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/container/deque_fwd.hpp -------------------------------------------------------------------------------- /include/fc/container/flat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/container/flat.hpp -------------------------------------------------------------------------------- /include/fc/container/flat_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/container/flat_fwd.hpp -------------------------------------------------------------------------------- /include/fc/crypto/aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/aes.hpp -------------------------------------------------------------------------------- /include/fc/crypto/base32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/base32.hpp -------------------------------------------------------------------------------- /include/fc/crypto/base36.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/base36.hpp -------------------------------------------------------------------------------- /include/fc/crypto/base58.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/base58.hpp -------------------------------------------------------------------------------- /include/fc/crypto/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/base64.hpp -------------------------------------------------------------------------------- /include/fc/crypto/bigint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/bigint.hpp -------------------------------------------------------------------------------- /include/fc/crypto/blowfish.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/blowfish.hpp -------------------------------------------------------------------------------- /include/fc/crypto/city.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/city.hpp -------------------------------------------------------------------------------- /include/fc/crypto/dh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/dh.hpp -------------------------------------------------------------------------------- /include/fc/crypto/digest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/digest.hpp -------------------------------------------------------------------------------- /include/fc/crypto/elliptic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/elliptic.hpp -------------------------------------------------------------------------------- /include/fc/crypto/hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/hex.hpp -------------------------------------------------------------------------------- /include/fc/crypto/hmac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/hmac.hpp -------------------------------------------------------------------------------- /include/fc/crypto/openssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/openssl.hpp -------------------------------------------------------------------------------- /include/fc/crypto/pke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/pke.hpp -------------------------------------------------------------------------------- /include/fc/crypto/rand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/rand.hpp -------------------------------------------------------------------------------- /include/fc/crypto/ripemd160.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/ripemd160.hpp -------------------------------------------------------------------------------- /include/fc/crypto/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/sha1.hpp -------------------------------------------------------------------------------- /include/fc/crypto/sha224.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/sha224.hpp -------------------------------------------------------------------------------- /include/fc/crypto/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/sha256.hpp -------------------------------------------------------------------------------- /include/fc/crypto/sha512.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/crypto/sha512.hpp -------------------------------------------------------------------------------- /include/fc/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/exception/exception.hpp -------------------------------------------------------------------------------- /include/fc/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/filesystem.hpp -------------------------------------------------------------------------------- /include/fc/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/fwd.hpp -------------------------------------------------------------------------------- /include/fc/fwd_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/fwd_impl.hpp -------------------------------------------------------------------------------- /include/fc/git_revision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/git_revision.hpp -------------------------------------------------------------------------------- /include/fc/interprocess/file_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/interprocess/file_mapping.hpp -------------------------------------------------------------------------------- /include/fc/interprocess/iprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/interprocess/iprocess.hpp -------------------------------------------------------------------------------- /include/fc/interprocess/mmap_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/interprocess/mmap_struct.hpp -------------------------------------------------------------------------------- /include/fc/interprocess/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/interprocess/process.hpp -------------------------------------------------------------------------------- /include/fc/interprocess/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/interprocess/signals.hpp -------------------------------------------------------------------------------- /include/fc/io/buffered_iostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/buffered_iostream.hpp -------------------------------------------------------------------------------- /include/fc/io/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/console.hpp -------------------------------------------------------------------------------- /include/fc/io/datastream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/datastream.hpp -------------------------------------------------------------------------------- /include/fc/io/datastream_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/datastream_back.hpp -------------------------------------------------------------------------------- /include/fc/io/enum_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/enum_type.hpp -------------------------------------------------------------------------------- /include/fc/io/fstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/fstream.hpp -------------------------------------------------------------------------------- /include/fc/io/iobuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/iobuffer.hpp -------------------------------------------------------------------------------- /include/fc/io/iostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/iostream.hpp -------------------------------------------------------------------------------- /include/fc/io/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/json.hpp -------------------------------------------------------------------------------- /include/fc/io/json_relaxed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/json_relaxed.hpp -------------------------------------------------------------------------------- /include/fc/io/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/raw.hpp -------------------------------------------------------------------------------- /include/fc/io/raw_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/raw_fwd.hpp -------------------------------------------------------------------------------- /include/fc/io/raw_unpack_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/raw_unpack_file.hpp -------------------------------------------------------------------------------- /include/fc/io/raw_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/raw_variant.hpp -------------------------------------------------------------------------------- /include/fc/io/sstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/sstream.hpp -------------------------------------------------------------------------------- /include/fc/io/stdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/stdio.hpp -------------------------------------------------------------------------------- /include/fc/io/varint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/io/varint.hpp -------------------------------------------------------------------------------- /include/fc/log/appender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/log/appender.hpp -------------------------------------------------------------------------------- /include/fc/log/console_appender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/log/console_appender.hpp -------------------------------------------------------------------------------- /include/fc/log/file_appender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/log/file_appender.hpp -------------------------------------------------------------------------------- /include/fc/log/gelf_appender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/log/gelf_appender.hpp -------------------------------------------------------------------------------- /include/fc/log/log_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/log/log_message.hpp -------------------------------------------------------------------------------- /include/fc/log/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/log/logger.hpp -------------------------------------------------------------------------------- /include/fc/log/logger_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/log/logger_config.hpp -------------------------------------------------------------------------------- /include/fc/make_fused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/make_fused.hpp -------------------------------------------------------------------------------- /include/fc/network/gntp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/gntp.hpp -------------------------------------------------------------------------------- /include/fc/network/http/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/http/connection.hpp -------------------------------------------------------------------------------- /include/fc/network/http/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/http/server.hpp -------------------------------------------------------------------------------- /include/fc/network/http/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/http/websocket.hpp -------------------------------------------------------------------------------- /include/fc/network/ip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/ip.hpp -------------------------------------------------------------------------------- /include/fc/network/ntp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/ntp.hpp -------------------------------------------------------------------------------- /include/fc/network/rate_limiting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/rate_limiting.hpp -------------------------------------------------------------------------------- /include/fc/network/resolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/resolve.hpp -------------------------------------------------------------------------------- /include/fc/network/tcp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/tcp_socket.hpp -------------------------------------------------------------------------------- /include/fc/network/tcp_socket_io_hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/tcp_socket_io_hooks.hpp -------------------------------------------------------------------------------- /include/fc/network/udp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/udp_socket.hpp -------------------------------------------------------------------------------- /include/fc/network/udt_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/udt_socket.hpp -------------------------------------------------------------------------------- /include/fc/network/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/network/url.hpp -------------------------------------------------------------------------------- /include/fc/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/noncopyable.hpp -------------------------------------------------------------------------------- /include/fc/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/optional.hpp -------------------------------------------------------------------------------- /include/fc/platform_independence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/platform_independence.hpp -------------------------------------------------------------------------------- /include/fc/real128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/real128.hpp -------------------------------------------------------------------------------- /include/fc/reflect/reflect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/reflect/reflect.hpp -------------------------------------------------------------------------------- /include/fc/reflect/typename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/reflect/typename.hpp -------------------------------------------------------------------------------- /include/fc/reflect/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/reflect/variant.hpp -------------------------------------------------------------------------------- /include/fc/rpc/api_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/api_connection.hpp -------------------------------------------------------------------------------- /include/fc/rpc/cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/cli.hpp -------------------------------------------------------------------------------- /include/fc/rpc/http_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/http_api.hpp -------------------------------------------------------------------------------- /include/fc/rpc/json_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/json_connection.hpp -------------------------------------------------------------------------------- /include/fc/rpc/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/state.hpp -------------------------------------------------------------------------------- /include/fc/rpc/variant_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/variant_connection.hpp -------------------------------------------------------------------------------- /include/fc/rpc/variant_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/variant_stream.hpp -------------------------------------------------------------------------------- /include/fc/rpc/websocket_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/rpc/websocket_api.hpp -------------------------------------------------------------------------------- /include/fc/safe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/safe.hpp -------------------------------------------------------------------------------- /include/fc/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/shared_ptr.hpp -------------------------------------------------------------------------------- /include/fc/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/signal.hpp -------------------------------------------------------------------------------- /include/fc/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/signals.hpp -------------------------------------------------------------------------------- /include/fc/smart_ref_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/smart_ref_fwd.hpp -------------------------------------------------------------------------------- /include/fc/smart_ref_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/smart_ref_impl.hpp -------------------------------------------------------------------------------- /include/fc/ssh/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/ssh/client.hpp -------------------------------------------------------------------------------- /include/fc/ssh/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/ssh/error.hpp -------------------------------------------------------------------------------- /include/fc/ssh/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/ssh/process.hpp -------------------------------------------------------------------------------- /include/fc/static_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/static_variant.hpp -------------------------------------------------------------------------------- /include/fc/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/string.hpp -------------------------------------------------------------------------------- /include/fc/thread/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/future.hpp -------------------------------------------------------------------------------- /include/fc/thread/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/mutex.hpp -------------------------------------------------------------------------------- /include/fc/thread/non_preemptable_scope_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/non_preemptable_scope_check.hpp -------------------------------------------------------------------------------- /include/fc/thread/priority.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/priority.hpp -------------------------------------------------------------------------------- /include/fc/thread/scoped_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/scoped_lock.hpp -------------------------------------------------------------------------------- /include/fc/thread/spin_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/spin_lock.hpp -------------------------------------------------------------------------------- /include/fc/thread/spin_yield_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/spin_yield_lock.hpp -------------------------------------------------------------------------------- /include/fc/thread/task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/task.hpp -------------------------------------------------------------------------------- /include/fc/thread/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/thread.hpp -------------------------------------------------------------------------------- /include/fc/thread/thread_specific.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/thread_specific.hpp -------------------------------------------------------------------------------- /include/fc/thread/unique_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/unique_lock.hpp -------------------------------------------------------------------------------- /include/fc/thread/wait_condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/thread/wait_condition.hpp -------------------------------------------------------------------------------- /include/fc/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/time.hpp -------------------------------------------------------------------------------- /include/fc/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/tuple.hpp -------------------------------------------------------------------------------- /include/fc/uint128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/uint128.hpp -------------------------------------------------------------------------------- /include/fc/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/unique_ptr.hpp -------------------------------------------------------------------------------- /include/fc/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/utf8.hpp -------------------------------------------------------------------------------- /include/fc/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/utility.hpp -------------------------------------------------------------------------------- /include/fc/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/variant.hpp -------------------------------------------------------------------------------- /include/fc/variant_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/variant_object.hpp -------------------------------------------------------------------------------- /include/fc/vector.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /include/fc/vector_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/vector_fwd.hpp -------------------------------------------------------------------------------- /include/fc/wait_any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/include/fc/wait_any.hpp -------------------------------------------------------------------------------- /src/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/asio.cpp -------------------------------------------------------------------------------- /src/byteswap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/byteswap.hpp -------------------------------------------------------------------------------- /src/compress/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/compress/miniz.c -------------------------------------------------------------------------------- /src/compress/smaz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/compress/smaz.cpp -------------------------------------------------------------------------------- /src/compress/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/compress/zlib.cpp -------------------------------------------------------------------------------- /src/crypto/_digest_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/_digest_common.cpp -------------------------------------------------------------------------------- /src/crypto/_digest_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/_digest_common.hpp -------------------------------------------------------------------------------- /src/crypto/_elliptic_impl_priv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/_elliptic_impl_priv.hpp -------------------------------------------------------------------------------- /src/crypto/_elliptic_impl_pub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/_elliptic_impl_pub.hpp -------------------------------------------------------------------------------- /src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/aes.cpp -------------------------------------------------------------------------------- /src/crypto/base32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/base32.cpp -------------------------------------------------------------------------------- /src/crypto/base36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/base36.cpp -------------------------------------------------------------------------------- /src/crypto/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/base58.cpp -------------------------------------------------------------------------------- /src/crypto/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/base64.cpp -------------------------------------------------------------------------------- /src/crypto/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/bigint.cpp -------------------------------------------------------------------------------- /src/crypto/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/blowfish.cpp -------------------------------------------------------------------------------- /src/crypto/city.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/city.cpp -------------------------------------------------------------------------------- /src/crypto/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/crc.cpp -------------------------------------------------------------------------------- /src/crypto/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/dh.cpp -------------------------------------------------------------------------------- /src/crypto/elliptic_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/elliptic_common.cpp -------------------------------------------------------------------------------- /src/crypto/elliptic_impl_priv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/elliptic_impl_priv.cpp -------------------------------------------------------------------------------- /src/crypto/elliptic_impl_pub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/elliptic_impl_pub.cpp -------------------------------------------------------------------------------- /src/crypto/elliptic_mixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/elliptic_mixed.cpp -------------------------------------------------------------------------------- /src/crypto/elliptic_openssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/elliptic_openssl.cpp -------------------------------------------------------------------------------- /src/crypto/elliptic_secp256k1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/elliptic_secp256k1.cpp -------------------------------------------------------------------------------- /src/crypto/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/hex.cpp -------------------------------------------------------------------------------- /src/crypto/openssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/openssl.cpp -------------------------------------------------------------------------------- /src/crypto/pke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/pke.cpp -------------------------------------------------------------------------------- /src/crypto/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/rand.cpp -------------------------------------------------------------------------------- /src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/crypto/sha224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/sha224.cpp -------------------------------------------------------------------------------- /src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/exception.cpp -------------------------------------------------------------------------------- /src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/filesystem.cpp -------------------------------------------------------------------------------- /src/git_revision.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/git_revision.cpp.in -------------------------------------------------------------------------------- /src/interprocess/file_mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/interprocess/file_mapping.cpp -------------------------------------------------------------------------------- /src/interprocess/mmap_struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/interprocess/mmap_struct.cpp -------------------------------------------------------------------------------- /src/interprocess/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/interprocess/process.cpp -------------------------------------------------------------------------------- /src/interprocess/signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/interprocess/signals.cpp -------------------------------------------------------------------------------- /src/io/buffered_iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/buffered_iostream.cpp -------------------------------------------------------------------------------- /src/io/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/console.cpp -------------------------------------------------------------------------------- /src/io/datastream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/datastream.cpp -------------------------------------------------------------------------------- /src/io/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/fstream.cpp -------------------------------------------------------------------------------- /src/io/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/iostream.cpp -------------------------------------------------------------------------------- /src/io/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/json.cpp -------------------------------------------------------------------------------- /src/io/sstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/sstream.cpp -------------------------------------------------------------------------------- /src/io/varint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/io/varint.cpp -------------------------------------------------------------------------------- /src/log/appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/appender.cpp -------------------------------------------------------------------------------- /src/log/console_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/console_appender.cpp -------------------------------------------------------------------------------- /src/log/console_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/console_defines.h -------------------------------------------------------------------------------- /src/log/file_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/file_appender.cpp -------------------------------------------------------------------------------- /src/log/gelf_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/gelf_appender.cpp -------------------------------------------------------------------------------- /src/log/log_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/log_message.cpp -------------------------------------------------------------------------------- /src/log/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/logger.cpp -------------------------------------------------------------------------------- /src/log/logger_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/log/logger_config.cpp -------------------------------------------------------------------------------- /src/network/gntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/gntp.cpp -------------------------------------------------------------------------------- /src/network/http/http_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/http/http_connection.cpp -------------------------------------------------------------------------------- /src/network/http/http_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/http/http_server.cpp -------------------------------------------------------------------------------- /src/network/http/websocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/http/websocket.cpp -------------------------------------------------------------------------------- /src/network/ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/ip.cpp -------------------------------------------------------------------------------- /src/network/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/ntp.cpp -------------------------------------------------------------------------------- /src/network/rate_limiting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/rate_limiting.cpp -------------------------------------------------------------------------------- /src/network/resolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/resolve.cpp -------------------------------------------------------------------------------- /src/network/tcp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/tcp_socket.cpp -------------------------------------------------------------------------------- /src/network/udp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/udp_socket.cpp -------------------------------------------------------------------------------- /src/network/udt_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/udt_socket.cpp -------------------------------------------------------------------------------- /src/network/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/network/url.cpp -------------------------------------------------------------------------------- /src/real128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/real128.cpp -------------------------------------------------------------------------------- /src/rpc/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/rpc/cli.cpp -------------------------------------------------------------------------------- /src/rpc/http_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/rpc/http_api.cpp -------------------------------------------------------------------------------- /src/rpc/json_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/rpc/json_connection.cpp -------------------------------------------------------------------------------- /src/rpc/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/rpc/state.cpp -------------------------------------------------------------------------------- /src/rpc/websocket_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/rpc/websocket_api.cpp -------------------------------------------------------------------------------- /src/shared_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/shared_ptr.cpp -------------------------------------------------------------------------------- /src/ssh/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/ssh/client.cpp -------------------------------------------------------------------------------- /src/ssh/client_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/ssh/client_impl.hpp -------------------------------------------------------------------------------- /src/ssh/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/ssh/process.cpp -------------------------------------------------------------------------------- /src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/string.cpp -------------------------------------------------------------------------------- /src/thread/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/context.hpp -------------------------------------------------------------------------------- /src/thread/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/future.cpp -------------------------------------------------------------------------------- /src/thread/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/mutex.cpp -------------------------------------------------------------------------------- /src/thread/non_preemptable_scope_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/non_preemptable_scope_check.cpp -------------------------------------------------------------------------------- /src/thread/spin_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/spin_lock.cpp -------------------------------------------------------------------------------- /src/thread/spin_yield_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/spin_yield_lock.cpp -------------------------------------------------------------------------------- /src/thread/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/task.cpp -------------------------------------------------------------------------------- /src/thread/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/thread.cpp -------------------------------------------------------------------------------- /src/thread/thread_d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/thread_d.hpp -------------------------------------------------------------------------------- /src/thread/thread_specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/thread/thread_specific.cpp -------------------------------------------------------------------------------- /src/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/time.cpp -------------------------------------------------------------------------------- /src/uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/uint128.cpp -------------------------------------------------------------------------------- /src/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/utf8.cpp -------------------------------------------------------------------------------- /src/utf8/ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/utf8/ReleaseNotes -------------------------------------------------------------------------------- /src/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/utf8/checked.h -------------------------------------------------------------------------------- /src/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/utf8/core.h -------------------------------------------------------------------------------- /src/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/utf8/unchecked.h -------------------------------------------------------------------------------- /src/utf8/utf8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/utf8/utf8cpp.html -------------------------------------------------------------------------------- /src/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/variant.cpp -------------------------------------------------------------------------------- /src/variant_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/src/variant_object.cpp -------------------------------------------------------------------------------- /tests/all_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/all_tests.cpp -------------------------------------------------------------------------------- /tests/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/api.cpp -------------------------------------------------------------------------------- /tests/blinding_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/blinding_test.cpp -------------------------------------------------------------------------------- /tests/bloom_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/bloom_test.cpp -------------------------------------------------------------------------------- /tests/compress/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/compress/compress.cpp -------------------------------------------------------------------------------- /tests/crypto/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/aes_test.cpp -------------------------------------------------------------------------------- /tests/crypto/base_n_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/base_n_tests.cpp -------------------------------------------------------------------------------- /tests/crypto/bigint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/bigint_test.cpp -------------------------------------------------------------------------------- /tests/crypto/blind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/blind.cpp -------------------------------------------------------------------------------- /tests/crypto/blowfish_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/blowfish_test.cpp -------------------------------------------------------------------------------- /tests/crypto/dh_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/dh_test.cpp -------------------------------------------------------------------------------- /tests/crypto/ecc-interop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/ecc-interop.sh -------------------------------------------------------------------------------- /tests/crypto/ecc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/ecc_test.cpp -------------------------------------------------------------------------------- /tests/crypto/rand_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/rand_test.cpp -------------------------------------------------------------------------------- /tests/crypto/sha_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/crypto/sha_tests.cpp -------------------------------------------------------------------------------- /tests/hmac_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/hmac_test.cpp -------------------------------------------------------------------------------- /tests/network/http/websocket_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/network/http/websocket_test.cpp -------------------------------------------------------------------------------- /tests/network/ntp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/network/ntp_test.cpp -------------------------------------------------------------------------------- /tests/rate_limiting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/rate_limiting.cpp -------------------------------------------------------------------------------- /tests/real128_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/real128_test.cpp -------------------------------------------------------------------------------- /tests/rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/rpc.cpp -------------------------------------------------------------------------------- /tests/sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/sleep.cpp -------------------------------------------------------------------------------- /tests/thread/task_cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/thread/task_cancel.cpp -------------------------------------------------------------------------------- /tests/udt_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/udt_client.cpp -------------------------------------------------------------------------------- /tests/udt_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/udt_server.cpp -------------------------------------------------------------------------------- /tests/udtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/udtc.cpp -------------------------------------------------------------------------------- /tests/udts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/udts.cpp -------------------------------------------------------------------------------- /tests/utf8_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/tests/utf8_test.cpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/all.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/child.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/child.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/config.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/context.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/detail/basic_status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/detail/basic_status.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/detail/basic_status_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/detail/basic_status_service.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/detail/posix_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/detail/posix_helpers.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/detail/status_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/detail/status_impl.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/detail/systembuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/detail/systembuf.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/detail/windows_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/detail/windows_helpers.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/environment.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/handle.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/operations.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/pid_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/pid_type.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/pipe.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/pistream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/pistream.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/postream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/postream.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/process.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/self.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/status.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/stream_behavior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/stream_behavior.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/stream_ends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/stream_ends.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/stream_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/stream_id.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/include/boost/process/stream_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/include/boost/process/stream_type.hpp -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_arm_aapcs_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_arm_aapcs_elf_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_i386_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_i386_ms_pe_masm.asm -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_i386_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_i386_sysv_elf_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_i386_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_i386_sysv_macho_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_mips32_o32_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_mips32_o32_elf_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_ppc32_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_ppc32_sysv_elf_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_ppc64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_ppc64_sysv_elf_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_x86_64_ms_pe_masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_x86_64_ms_pe_masm.asm -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_x86_64_sysv_elf_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_x86_64_sysv_elf_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/asm/fcontext_x86_64_sysv_macho_gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/asm/fcontext_x86_64_sysv_macho_gas.S -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/fcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/fcontext.cpp -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/seh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/seh.cpp -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/stack_allocator_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/stack_allocator_posix.cpp -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/stack_allocator_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/stack_allocator_windows.cpp -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/stack_utils_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/stack_utils_posix.cpp -------------------------------------------------------------------------------- /vendor/boost_1.51/libs/context/stack_utils_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/boost_1.51/libs/context/stack_utils_windows.cpp -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/LICENSE.TXT -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/README.TXT -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/CyoDecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/CyoDecode.c -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/CyoDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/CyoDecode.h -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/CyoEncode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/CyoEncode.c -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/CyoEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/CyoEncode.h -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/build.sh -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/cyoencode-vc100.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/cyoencode-vc100.vcxproj -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/cyoencode-vc71.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/cyoencode-vc71.vcproj -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/cyoencode-vc80.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/cyoencode-vc80.vcproj -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/cyoencode-vc90.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/cyoencode-vc90.vcproj -------------------------------------------------------------------------------- /vendor/cyoencode-1.0.2/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/cyoencode-1.0.2/src/test.c -------------------------------------------------------------------------------- /vendor/udt4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/udt4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/LICENSE.txt -------------------------------------------------------------------------------- /vendor/udt4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/README.txt -------------------------------------------------------------------------------- /vendor/udt4/src/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/api.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/api.h -------------------------------------------------------------------------------- /vendor/udt4/src/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/buffer.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/buffer.h -------------------------------------------------------------------------------- /vendor/udt4/src/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/cache.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/cache.h -------------------------------------------------------------------------------- /vendor/udt4/src/ccc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/ccc.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/ccc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/ccc.h -------------------------------------------------------------------------------- /vendor/udt4/src/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/channel.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/channel.h -------------------------------------------------------------------------------- /vendor/udt4/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/common.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/common.h -------------------------------------------------------------------------------- /vendor/udt4/src/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/core.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/core.h -------------------------------------------------------------------------------- /vendor/udt4/src/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/epoll.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/epoll.h -------------------------------------------------------------------------------- /vendor/udt4/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/list.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/list.h -------------------------------------------------------------------------------- /vendor/udt4/src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/md5.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/md5.h -------------------------------------------------------------------------------- /vendor/udt4/src/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/packet.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/packet.h -------------------------------------------------------------------------------- /vendor/udt4/src/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/queue.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/queue.h -------------------------------------------------------------------------------- /vendor/udt4/src/udt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/udt.h -------------------------------------------------------------------------------- /vendor/udt4/src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/window.cpp -------------------------------------------------------------------------------- /vendor/udt4/src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptonomex/fc/HEAD/vendor/udt4/src/window.h --------------------------------------------------------------------------------