├── .editorconfig ├── .gitignore ├── BT Test ├── BT Test.cpp ├── BT Test.sln ├── BT Test.vcxproj ├── CMakeLists.txt ├── XBT Client Backend.nsi ├── block_list.cpp ├── block_list.h ├── bt_admin_link.cpp ├── bt_admin_link.h ├── bt_file.cpp ├── bt_file.h ├── bt_file_data.cpp ├── bt_file_data.h ├── bt_hasher.cpp ├── bt_hasher.h ├── bt_link.cpp ├── bt_link.h ├── bt_peer_data.cpp ├── bt_peer_data.h ├── bt_peer_link.cpp ├── bt_peer_link.h ├── bt_piece.cpp ├── bt_piece.h ├── bt_piece_data.cpp ├── bt_piece_data.h ├── bt_pl_write_data.cpp ├── bt_pl_write_data.h ├── bt_sub_file_data.cpp ├── bt_sub_file_data.h ├── bt_tracker_link.cpp ├── bt_tracker_link.h ├── config.cpp ├── config.h ├── data_counter.cpp ├── data_counter.h ├── http_link.cpp ├── http_link.h ├── http_response_handler.cpp ├── http_response_handler.h ├── make.sh ├── merkle_tree.cpp ├── merkle_tree.h ├── profiles.cpp ├── profiles.h ├── ring_buffer.cpp ├── ring_buffer.h ├── scheduler.cpp ├── scheduler.h ├── server.cpp ├── server.h ├── stdafx.cpp ├── stdafx.h ├── version_check_handler.cpp └── version_check_handler.h ├── CMakeLists.txt ├── COPYING ├── Client Command Line Interface ├── CMakeLists.txt ├── XBT Client Command Line Interface.cpp ├── XBT Client Command Line Interface.sln ├── XBT Client Command Line Interface.vcxproj ├── make.sh ├── stdafx.cpp └── stdafx.h ├── Client ├── ListCtrlEx.cpp ├── ListCtrlEx.h ├── ListCtrlEx1.cpp ├── ListCtrlEx1.h ├── StdAfx.cpp ├── StdAfx.h ├── URLStatic.cpp ├── URLStatic.h ├── XBT Client.cpp ├── XBT Client.h ├── XBT Client.nsi ├── XBT Client.rc ├── XBT Client.sln ├── XBT Client.vcxproj ├── XBT ClientDlg.cpp ├── XBT ClientDlg.h ├── dlg_about.cpp ├── dlg_about.h ├── dlg_block_list.cpp ├── dlg_block_list.h ├── dlg_make_torrent.cpp ├── dlg_make_torrent.h ├── dlg_options.cpp ├── dlg_options.h ├── dlg_peer_connect.cpp ├── dlg_peer_connect.h ├── dlg_profile.cpp ├── dlg_profile.h ├── dlg_profiles.cpp ├── dlg_profiles.h ├── dlg_scheduler.cpp ├── dlg_scheduler.h ├── dlg_scheduler_entry.cpp ├── dlg_scheduler_entry.h ├── dlg_torrent_options.cpp ├── dlg_torrent_options.h ├── dlg_tracker.cpp ├── dlg_tracker.h ├── dlg_trackers.cpp ├── dlg_trackers.h ├── dns_worker.cpp ├── dns_worker.h ├── htdocs │ ├── benc.php │ ├── common.php │ ├── config.php.default │ ├── index.php │ ├── templates.php │ └── xbt.css ├── res │ ├── XBT Client B.ico │ ├── XBT Client Manifest.xml │ ├── XBT Client.ico │ └── XBT Client.rc2 └── resource.h ├── Make Merkle Tree ├── CMakeLists.txt ├── XBT Make Merkle Tree.cpp ├── XBT Make Merkle Tree.sln └── XBT Make Merkle Tree.vcxproj ├── README.md ├── Tracker ├── CMakeLists.txt ├── COPYING ├── XBT Tracker.cpp ├── XBT Tracker.nsi ├── XBT Tracker.rc ├── XBT Tracker.sln ├── XBT Tracker.vcxproj ├── client.h ├── config.cpp ├── config.h ├── connection.cpp ├── connection.h ├── epoll.cpp ├── epoll.h ├── htdocs │ ├── xbt.css │ ├── xbt_common.php │ ├── xbt_config.php │ ├── xbt_files.php │ └── xbt_torrent_pass_version.php ├── make.sh ├── res │ └── XBT Tracker.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── tracker.cpp ├── tracker.h ├── tracker.service ├── tracker.socket ├── tracker_input.cpp ├── tracker_input.h ├── transaction.cpp ├── transaction.h ├── xbt_tracker.conf.default └── xbt_tracker.sql ├── XBT.props ├── XBT.sln ├── debian ├── changelog ├── compat ├── control ├── rules └── source │ └── format ├── htdocs ├── bottom.php ├── client │ └── index.php ├── client_backend │ └── index.php ├── client_command_line_interface │ └── index.php ├── client_web_interface │ ├── images │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ └── index.php ├── index.php ├── top.php ├── tracker │ └── index.php ├── udp_tracker_protocol.html └── xbt.css ├── meson.build ├── misc ├── CMakeLists.txt ├── alerts.cpp ├── alerts.h ├── bt_misc.cpp ├── bt_strings.h ├── bt_torrent.cpp ├── bt_torrent.h ├── bt_tracker_account.cpp ├── bt_tracker_account.h ├── bt_tracker_url.cpp ├── bt_tracker_url.h ├── bvalue.cpp ├── bvalue.h ├── config_base.h ├── database.cpp ├── sha1.cpp ├── sha1.h ├── socket.cpp ├── socket.h ├── sql_query.cpp ├── stream_int.h ├── stream_reader.cpp ├── stream_reader.h ├── stream_writer.cpp ├── stream_writer.h ├── tf_misc.cpp ├── tf_misc.h ├── virtual_binary.cpp ├── windows │ ├── ETSLayout.cpp │ ├── ETSLayout.h │ ├── browse_for_directory.cpp │ ├── browse_for_directory.h │ ├── nt_service.cpp │ └── nt_service.h ├── xbt │ ├── bstream.h │ ├── bt_misc.h │ ├── cfile.h │ ├── data_ref.h │ ├── database.h │ ├── find_ptr.h │ ├── make_query.h │ ├── profiler.h │ ├── shared_data.h │ ├── sql_query.h │ ├── sql_result.h │ ├── string_view.h │ ├── to_array.h │ ├── virtual_binary.h │ ├── xcc_z.h │ ├── xif_key.h │ ├── xif_key_r.h │ └── xif_value.h ├── xcc_z.cpp ├── xif_key.cpp ├── xif_key_r.cpp └── xif_value.cpp ├── vcpkg-install.txt └── vcpkg.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | Debug/ 3 | Release/ 4 | -------------------------------------------------------------------------------- /BT Test/BT Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/BT Test.cpp -------------------------------------------------------------------------------- /BT Test/BT Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/BT Test.sln -------------------------------------------------------------------------------- /BT Test/BT Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/BT Test.vcxproj -------------------------------------------------------------------------------- /BT Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/CMakeLists.txt -------------------------------------------------------------------------------- /BT Test/XBT Client Backend.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/XBT Client Backend.nsi -------------------------------------------------------------------------------- /BT Test/block_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/block_list.cpp -------------------------------------------------------------------------------- /BT Test/block_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/block_list.h -------------------------------------------------------------------------------- /BT Test/bt_admin_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_admin_link.cpp -------------------------------------------------------------------------------- /BT Test/bt_admin_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_admin_link.h -------------------------------------------------------------------------------- /BT Test/bt_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_file.cpp -------------------------------------------------------------------------------- /BT Test/bt_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_file.h -------------------------------------------------------------------------------- /BT Test/bt_file_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_file_data.cpp -------------------------------------------------------------------------------- /BT Test/bt_file_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_file_data.h -------------------------------------------------------------------------------- /BT Test/bt_hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_hasher.cpp -------------------------------------------------------------------------------- /BT Test/bt_hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_hasher.h -------------------------------------------------------------------------------- /BT Test/bt_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_link.cpp -------------------------------------------------------------------------------- /BT Test/bt_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_link.h -------------------------------------------------------------------------------- /BT Test/bt_peer_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_peer_data.cpp -------------------------------------------------------------------------------- /BT Test/bt_peer_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_peer_data.h -------------------------------------------------------------------------------- /BT Test/bt_peer_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_peer_link.cpp -------------------------------------------------------------------------------- /BT Test/bt_peer_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_peer_link.h -------------------------------------------------------------------------------- /BT Test/bt_piece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_piece.cpp -------------------------------------------------------------------------------- /BT Test/bt_piece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_piece.h -------------------------------------------------------------------------------- /BT Test/bt_piece_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_piece_data.cpp -------------------------------------------------------------------------------- /BT Test/bt_piece_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_piece_data.h -------------------------------------------------------------------------------- /BT Test/bt_pl_write_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_pl_write_data.cpp -------------------------------------------------------------------------------- /BT Test/bt_pl_write_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_pl_write_data.h -------------------------------------------------------------------------------- /BT Test/bt_sub_file_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_sub_file_data.cpp -------------------------------------------------------------------------------- /BT Test/bt_sub_file_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_sub_file_data.h -------------------------------------------------------------------------------- /BT Test/bt_tracker_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_tracker_link.cpp -------------------------------------------------------------------------------- /BT Test/bt_tracker_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/bt_tracker_link.h -------------------------------------------------------------------------------- /BT Test/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/config.cpp -------------------------------------------------------------------------------- /BT Test/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/config.h -------------------------------------------------------------------------------- /BT Test/data_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/data_counter.cpp -------------------------------------------------------------------------------- /BT Test/data_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/data_counter.h -------------------------------------------------------------------------------- /BT Test/http_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/http_link.cpp -------------------------------------------------------------------------------- /BT Test/http_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/http_link.h -------------------------------------------------------------------------------- /BT Test/http_response_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/http_response_handler.cpp -------------------------------------------------------------------------------- /BT Test/http_response_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/http_response_handler.h -------------------------------------------------------------------------------- /BT Test/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/make.sh -------------------------------------------------------------------------------- /BT Test/merkle_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/merkle_tree.cpp -------------------------------------------------------------------------------- /BT Test/merkle_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/merkle_tree.h -------------------------------------------------------------------------------- /BT Test/profiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/profiles.cpp -------------------------------------------------------------------------------- /BT Test/profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/profiles.h -------------------------------------------------------------------------------- /BT Test/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/ring_buffer.cpp -------------------------------------------------------------------------------- /BT Test/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/ring_buffer.h -------------------------------------------------------------------------------- /BT Test/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/scheduler.cpp -------------------------------------------------------------------------------- /BT Test/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/scheduler.h -------------------------------------------------------------------------------- /BT Test/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/server.cpp -------------------------------------------------------------------------------- /BT Test/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/server.h -------------------------------------------------------------------------------- /BT Test/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /BT Test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/stdafx.h -------------------------------------------------------------------------------- /BT Test/version_check_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/version_check_handler.cpp -------------------------------------------------------------------------------- /BT Test/version_check_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/BT Test/version_check_handler.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/COPYING -------------------------------------------------------------------------------- /Client Command Line Interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client Command Line Interface/CMakeLists.txt -------------------------------------------------------------------------------- /Client Command Line Interface/XBT Client Command Line Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client Command Line Interface/XBT Client Command Line Interface.cpp -------------------------------------------------------------------------------- /Client Command Line Interface/XBT Client Command Line Interface.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client Command Line Interface/XBT Client Command Line Interface.sln -------------------------------------------------------------------------------- /Client Command Line Interface/XBT Client Command Line Interface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client Command Line Interface/XBT Client Command Line Interface.vcxproj -------------------------------------------------------------------------------- /Client Command Line Interface/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client Command Line Interface/make.sh -------------------------------------------------------------------------------- /Client Command Line Interface/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Client Command Line Interface/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client Command Line Interface/stdafx.h -------------------------------------------------------------------------------- /Client/ListCtrlEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/ListCtrlEx.cpp -------------------------------------------------------------------------------- /Client/ListCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/ListCtrlEx.h -------------------------------------------------------------------------------- /Client/ListCtrlEx1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/ListCtrlEx1.cpp -------------------------------------------------------------------------------- /Client/ListCtrlEx1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/ListCtrlEx1.h -------------------------------------------------------------------------------- /Client/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Client/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/StdAfx.h -------------------------------------------------------------------------------- /Client/URLStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/URLStatic.cpp -------------------------------------------------------------------------------- /Client/URLStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/URLStatic.h -------------------------------------------------------------------------------- /Client/XBT Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT Client.cpp -------------------------------------------------------------------------------- /Client/XBT Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT Client.h -------------------------------------------------------------------------------- /Client/XBT Client.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT Client.nsi -------------------------------------------------------------------------------- /Client/XBT Client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT Client.rc -------------------------------------------------------------------------------- /Client/XBT Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT Client.sln -------------------------------------------------------------------------------- /Client/XBT Client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT Client.vcxproj -------------------------------------------------------------------------------- /Client/XBT ClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT ClientDlg.cpp -------------------------------------------------------------------------------- /Client/XBT ClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/XBT ClientDlg.h -------------------------------------------------------------------------------- /Client/dlg_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_about.cpp -------------------------------------------------------------------------------- /Client/dlg_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_about.h -------------------------------------------------------------------------------- /Client/dlg_block_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_block_list.cpp -------------------------------------------------------------------------------- /Client/dlg_block_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_block_list.h -------------------------------------------------------------------------------- /Client/dlg_make_torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_make_torrent.cpp -------------------------------------------------------------------------------- /Client/dlg_make_torrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_make_torrent.h -------------------------------------------------------------------------------- /Client/dlg_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_options.cpp -------------------------------------------------------------------------------- /Client/dlg_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_options.h -------------------------------------------------------------------------------- /Client/dlg_peer_connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_peer_connect.cpp -------------------------------------------------------------------------------- /Client/dlg_peer_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_peer_connect.h -------------------------------------------------------------------------------- /Client/dlg_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_profile.cpp -------------------------------------------------------------------------------- /Client/dlg_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_profile.h -------------------------------------------------------------------------------- /Client/dlg_profiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_profiles.cpp -------------------------------------------------------------------------------- /Client/dlg_profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_profiles.h -------------------------------------------------------------------------------- /Client/dlg_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_scheduler.cpp -------------------------------------------------------------------------------- /Client/dlg_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_scheduler.h -------------------------------------------------------------------------------- /Client/dlg_scheduler_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_scheduler_entry.cpp -------------------------------------------------------------------------------- /Client/dlg_scheduler_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_scheduler_entry.h -------------------------------------------------------------------------------- /Client/dlg_torrent_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_torrent_options.cpp -------------------------------------------------------------------------------- /Client/dlg_torrent_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_torrent_options.h -------------------------------------------------------------------------------- /Client/dlg_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_tracker.cpp -------------------------------------------------------------------------------- /Client/dlg_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_tracker.h -------------------------------------------------------------------------------- /Client/dlg_trackers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_trackers.cpp -------------------------------------------------------------------------------- /Client/dlg_trackers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dlg_trackers.h -------------------------------------------------------------------------------- /Client/dns_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dns_worker.cpp -------------------------------------------------------------------------------- /Client/dns_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/dns_worker.h -------------------------------------------------------------------------------- /Client/htdocs/benc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/htdocs/benc.php -------------------------------------------------------------------------------- /Client/htdocs/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/htdocs/common.php -------------------------------------------------------------------------------- /Client/htdocs/config.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/htdocs/config.php.default -------------------------------------------------------------------------------- /Client/htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/htdocs/index.php -------------------------------------------------------------------------------- /Client/htdocs/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/htdocs/templates.php -------------------------------------------------------------------------------- /Client/htdocs/xbt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/htdocs/xbt.css -------------------------------------------------------------------------------- /Client/res/XBT Client B.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/res/XBT Client B.ico -------------------------------------------------------------------------------- /Client/res/XBT Client Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/res/XBT Client Manifest.xml -------------------------------------------------------------------------------- /Client/res/XBT Client.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/res/XBT Client.ico -------------------------------------------------------------------------------- /Client/res/XBT Client.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/res/XBT Client.rc2 -------------------------------------------------------------------------------- /Client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Client/resource.h -------------------------------------------------------------------------------- /Make Merkle Tree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Make Merkle Tree/CMakeLists.txt -------------------------------------------------------------------------------- /Make Merkle Tree/XBT Make Merkle Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Make Merkle Tree/XBT Make Merkle Tree.cpp -------------------------------------------------------------------------------- /Make Merkle Tree/XBT Make Merkle Tree.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Make Merkle Tree/XBT Make Merkle Tree.sln -------------------------------------------------------------------------------- /Make Merkle Tree/XBT Make Merkle Tree.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Make Merkle Tree/XBT Make Merkle Tree.vcxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/README.md -------------------------------------------------------------------------------- /Tracker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/CMakeLists.txt -------------------------------------------------------------------------------- /Tracker/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/COPYING -------------------------------------------------------------------------------- /Tracker/XBT Tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/XBT Tracker.cpp -------------------------------------------------------------------------------- /Tracker/XBT Tracker.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/XBT Tracker.nsi -------------------------------------------------------------------------------- /Tracker/XBT Tracker.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/XBT Tracker.rc -------------------------------------------------------------------------------- /Tracker/XBT Tracker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/XBT Tracker.sln -------------------------------------------------------------------------------- /Tracker/XBT Tracker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/XBT Tracker.vcxproj -------------------------------------------------------------------------------- /Tracker/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/client.h -------------------------------------------------------------------------------- /Tracker/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/config.cpp -------------------------------------------------------------------------------- /Tracker/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/config.h -------------------------------------------------------------------------------- /Tracker/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/connection.cpp -------------------------------------------------------------------------------- /Tracker/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/connection.h -------------------------------------------------------------------------------- /Tracker/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/epoll.cpp -------------------------------------------------------------------------------- /Tracker/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/epoll.h -------------------------------------------------------------------------------- /Tracker/htdocs/xbt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/htdocs/xbt.css -------------------------------------------------------------------------------- /Tracker/htdocs/xbt_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/htdocs/xbt_common.php -------------------------------------------------------------------------------- /Tracker/htdocs/xbt_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/htdocs/xbt_config.php -------------------------------------------------------------------------------- /Tracker/htdocs/xbt_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/htdocs/xbt_files.php -------------------------------------------------------------------------------- /Tracker/htdocs/xbt_torrent_pass_version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/htdocs/xbt_torrent_pass_version.php -------------------------------------------------------------------------------- /Tracker/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/make.sh -------------------------------------------------------------------------------- /Tracker/res/XBT Tracker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/res/XBT Tracker.ico -------------------------------------------------------------------------------- /Tracker/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/resource.h -------------------------------------------------------------------------------- /Tracker/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Tracker/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/stdafx.h -------------------------------------------------------------------------------- /Tracker/tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/tracker.cpp -------------------------------------------------------------------------------- /Tracker/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/tracker.h -------------------------------------------------------------------------------- /Tracker/tracker.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/tracker.service -------------------------------------------------------------------------------- /Tracker/tracker.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/tracker.socket -------------------------------------------------------------------------------- /Tracker/tracker_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/tracker_input.cpp -------------------------------------------------------------------------------- /Tracker/tracker_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/tracker_input.h -------------------------------------------------------------------------------- /Tracker/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/transaction.cpp -------------------------------------------------------------------------------- /Tracker/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/transaction.h -------------------------------------------------------------------------------- /Tracker/xbt_tracker.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/xbt_tracker.conf.default -------------------------------------------------------------------------------- /Tracker/xbt_tracker.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/Tracker/xbt_tracker.sql -------------------------------------------------------------------------------- /XBT.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/XBT.props -------------------------------------------------------------------------------- /XBT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/XBT.sln -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/debian/control -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /htdocs/bottom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/bottom.php -------------------------------------------------------------------------------- /htdocs/client/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client/index.php -------------------------------------------------------------------------------- /htdocs/client_backend/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client_backend/index.php -------------------------------------------------------------------------------- /htdocs/client_command_line_interface/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client_command_line_interface/index.php -------------------------------------------------------------------------------- /htdocs/client_web_interface/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client_web_interface/images/0.png -------------------------------------------------------------------------------- /htdocs/client_web_interface/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client_web_interface/images/1.png -------------------------------------------------------------------------------- /htdocs/client_web_interface/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client_web_interface/images/2.png -------------------------------------------------------------------------------- /htdocs/client_web_interface/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client_web_interface/images/3.png -------------------------------------------------------------------------------- /htdocs/client_web_interface/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/client_web_interface/index.php -------------------------------------------------------------------------------- /htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/index.php -------------------------------------------------------------------------------- /htdocs/top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/top.php -------------------------------------------------------------------------------- /htdocs/tracker/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/tracker/index.php -------------------------------------------------------------------------------- /htdocs/udp_tracker_protocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/udp_tracker_protocol.html -------------------------------------------------------------------------------- /htdocs/xbt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/htdocs/xbt.css -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/meson.build -------------------------------------------------------------------------------- /misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/CMakeLists.txt -------------------------------------------------------------------------------- /misc/alerts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/alerts.cpp -------------------------------------------------------------------------------- /misc/alerts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/alerts.h -------------------------------------------------------------------------------- /misc/bt_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_misc.cpp -------------------------------------------------------------------------------- /misc/bt_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_strings.h -------------------------------------------------------------------------------- /misc/bt_torrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_torrent.cpp -------------------------------------------------------------------------------- /misc/bt_torrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_torrent.h -------------------------------------------------------------------------------- /misc/bt_tracker_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_tracker_account.cpp -------------------------------------------------------------------------------- /misc/bt_tracker_account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_tracker_account.h -------------------------------------------------------------------------------- /misc/bt_tracker_url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_tracker_url.cpp -------------------------------------------------------------------------------- /misc/bt_tracker_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bt_tracker_url.h -------------------------------------------------------------------------------- /misc/bvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bvalue.cpp -------------------------------------------------------------------------------- /misc/bvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/bvalue.h -------------------------------------------------------------------------------- /misc/config_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/config_base.h -------------------------------------------------------------------------------- /misc/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/database.cpp -------------------------------------------------------------------------------- /misc/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/sha1.cpp -------------------------------------------------------------------------------- /misc/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/sha1.h -------------------------------------------------------------------------------- /misc/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/socket.cpp -------------------------------------------------------------------------------- /misc/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/socket.h -------------------------------------------------------------------------------- /misc/sql_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/sql_query.cpp -------------------------------------------------------------------------------- /misc/stream_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/stream_int.h -------------------------------------------------------------------------------- /misc/stream_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/stream_reader.cpp -------------------------------------------------------------------------------- /misc/stream_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/stream_reader.h -------------------------------------------------------------------------------- /misc/stream_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/stream_writer.cpp -------------------------------------------------------------------------------- /misc/stream_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/stream_writer.h -------------------------------------------------------------------------------- /misc/tf_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/tf_misc.cpp -------------------------------------------------------------------------------- /misc/tf_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/tf_misc.h -------------------------------------------------------------------------------- /misc/virtual_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/virtual_binary.cpp -------------------------------------------------------------------------------- /misc/windows/ETSLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/windows/ETSLayout.cpp -------------------------------------------------------------------------------- /misc/windows/ETSLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/windows/ETSLayout.h -------------------------------------------------------------------------------- /misc/windows/browse_for_directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/windows/browse_for_directory.cpp -------------------------------------------------------------------------------- /misc/windows/browse_for_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/windows/browse_for_directory.h -------------------------------------------------------------------------------- /misc/windows/nt_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/windows/nt_service.cpp -------------------------------------------------------------------------------- /misc/windows/nt_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/windows/nt_service.h -------------------------------------------------------------------------------- /misc/xbt/bstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/bstream.h -------------------------------------------------------------------------------- /misc/xbt/bt_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/bt_misc.h -------------------------------------------------------------------------------- /misc/xbt/cfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/cfile.h -------------------------------------------------------------------------------- /misc/xbt/data_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/data_ref.h -------------------------------------------------------------------------------- /misc/xbt/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/database.h -------------------------------------------------------------------------------- /misc/xbt/find_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/find_ptr.h -------------------------------------------------------------------------------- /misc/xbt/make_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/make_query.h -------------------------------------------------------------------------------- /misc/xbt/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/profiler.h -------------------------------------------------------------------------------- /misc/xbt/shared_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/shared_data.h -------------------------------------------------------------------------------- /misc/xbt/sql_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/sql_query.h -------------------------------------------------------------------------------- /misc/xbt/sql_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/sql_result.h -------------------------------------------------------------------------------- /misc/xbt/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/string_view.h -------------------------------------------------------------------------------- /misc/xbt/to_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/to_array.h -------------------------------------------------------------------------------- /misc/xbt/virtual_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/virtual_binary.h -------------------------------------------------------------------------------- /misc/xbt/xcc_z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/xcc_z.h -------------------------------------------------------------------------------- /misc/xbt/xif_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/xif_key.h -------------------------------------------------------------------------------- /misc/xbt/xif_key_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/xif_key_r.h -------------------------------------------------------------------------------- /misc/xbt/xif_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xbt/xif_value.h -------------------------------------------------------------------------------- /misc/xcc_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xcc_z.cpp -------------------------------------------------------------------------------- /misc/xif_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xif_key.cpp -------------------------------------------------------------------------------- /misc/xif_key_r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xif_key_r.cpp -------------------------------------------------------------------------------- /misc/xif_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/misc/xif_value.cpp -------------------------------------------------------------------------------- /vcpkg-install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/vcpkg-install.txt -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafvdSpek/xbt/HEAD/vcpkg.json --------------------------------------------------------------------------------