├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── COPYING ├── Dockerfile ├── Jamroot ├── LICENSE ├── README.md ├── docs ├── Coding_Guidelines.tex ├── Coding_Guidelines_2.md ├── FAQ.txt ├── MCSPDU_GRAMMAR.txt ├── PARAMETRES_VIDEO ├── ROADMAP.rst ├── TU │ ├── .gitignore │ ├── .ninja_deps │ ├── .ninja_log │ ├── bjamfilter.png │ ├── build.ninja │ ├── rdpcolor.png │ ├── unit_test.pdf │ ├── unit_test.tex │ └── unittestcolor.png ├── X224_class0_cheat_sheet.txt ├── bitmap_RLE_cheat_sheet.txt ├── changelog ├── coding_style.txt ├── conf.ffmpeg.txt ├── conf.x264.txt ├── copyright ├── func_utils │ ├── README.md │ ├── markdown.md │ └── slides.html ├── int_to_chars_and_bounded_views │ ├── README.md │ ├── markdown.md │ └── slides.html ├── keyboard │ ├── README.md │ ├── markdown.md │ ├── remark-latest.min.js │ └── slides.html ├── log_siem_arcsight.md ├── manual_to_redemption.rst ├── mod_rdp_verbose_flags.txt ├── rdp-scan-codes.txt ├── redop.py ├── redop_grammar.g ├── theme │ ├── theme_color.txt │ ├── theme_global.png │ ├── theme_selector_1.png │ ├── theme_selector_2.png │ ├── theme_separator_and_focus_color.png │ └── theme_tooltip.png └── unsupported_features.txt ├── include ├── config_variant.hpp └── main │ └── version.hpp ├── jam ├── cxxflags.jam ├── defines.jam ├── includes.jam ├── libs.jam ├── ocr.jam ├── redemption-config.jam ├── redemption-dependencies.jam ├── sanitizer.jam └── testing-coverage.jam ├── packaging ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── redemption.install │ └── rules └── package.sh ├── projects ├── jsclient │ ├── .gitignore │ ├── Jamroot │ ├── README.md │ ├── emscripten.jam │ ├── src │ │ ├── application │ │ │ ├── client.html │ │ │ ├── clipboard.js │ │ │ ├── keyboard.js │ │ │ ├── out_stream.js │ │ │ ├── player.html │ │ │ ├── rdp_graphics.js │ │ │ ├── reversed_layouts.js │ │ │ └── scancodes.js │ │ ├── core │ │ │ └── app_path.cpp │ │ ├── main │ │ │ ├── _dummy.cpp │ │ │ ├── js_client.cpp │ │ │ ├── js_player.cpp │ │ │ └── player_server.py │ │ ├── red_channels │ │ │ ├── clipboard.cpp │ │ │ ├── clipboard.hpp │ │ │ ├── js_channel.cpp │ │ │ └── js_channel.hpp │ │ ├── red_emscripten │ │ │ ├── bind.hpp │ │ │ ├── constants.hpp │ │ │ ├── em_asm.hpp │ │ │ ├── em_js.hpp │ │ │ └── val.hpp │ │ ├── redjs │ │ │ ├── channel_receiver.hpp │ │ │ ├── front.cpp │ │ │ ├── front.hpp │ │ │ ├── graphics.cpp │ │ │ ├── graphics.hpp │ │ │ ├── image_conversions.cpp │ │ │ ├── image_conversions.hpp │ │ │ ├── image_data.hpp │ │ │ ├── log_level.cpp │ │ │ ├── transport.cpp │ │ │ └── transport.hpp │ │ └── system │ │ │ ├── ssl_md4.hpp │ │ │ ├── ssl_md5.hpp │ │ │ ├── ssl_mod_exp.cpp │ │ │ ├── ssl_mod_exp.hpp │ │ │ ├── ssl_rc4.hpp │ │ │ ├── ssl_sha1.hpp │ │ │ ├── ssl_sha256.hpp │ │ │ └── tls_check_certificate.hpp │ ├── targets.jam │ ├── tests │ │ ├── application │ │ │ └── test_scancodes.cpp │ │ ├── includes │ │ │ └── test_only │ │ │ │ └── js_auto_test_case.hpp │ │ ├── red_channels │ │ │ ├── binding_channel.hpp │ │ │ ├── test_clipboard.cpp │ │ │ └── test_js_channel.cpp │ │ ├── redjs │ │ │ ├── test_front.cpp │ │ │ ├── test_graphics.cpp │ │ │ ├── test_image_conversions.cpp │ │ │ └── test_transport.cpp │ │ └── system │ │ │ ├── test_ssl_md4.cpp │ │ │ ├── test_ssl_md5.cpp │ │ │ ├── test_ssl_mod_exp.cpp │ │ │ ├── test_ssl_rc4.cpp │ │ │ ├── test_ssl_sha1.cpp │ │ │ └── test_ssl_sha256.cpp │ └── tools │ │ ├── README.md │ │ ├── gen_reversed_keylayout.py │ │ ├── gen_reversed_keylayout.sh │ │ ├── gen_targets.sh │ │ └── open_client.sh ├── ocr1 │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── cart.py │ ├── cat_classifiers │ ├── gen_classifier.py │ ├── img_win2012_smoothing_to_monochrome │ ├── img_win2012_smoothing_to_monochrome_d │ ├── include │ │ └── ocr1 │ │ │ ├── classifiers │ │ │ ├── cyrillic_tahoma_8_bold.hxx │ │ │ ├── russian.hxx │ │ │ ├── segoeUI_11.hxx │ │ │ ├── segoeUI_8_bold.hxx │ │ │ ├── tahoma_8_bold.hxx │ │ │ └── trebuchetMS_10_bold.hxx │ │ │ ├── common_classifier.hxx │ │ │ ├── common_classifier.names.hxx │ │ │ ├── cyrillic_classifier.hxx │ │ │ ├── cyrillic_classifier.names.hxx │ │ │ ├── fonts │ │ │ ├── cyrillic_tahoma_8_bold.txt │ │ │ ├── russian.txt │ │ │ ├── segoeUI_11.txt │ │ │ ├── segoeUI_8_bold.txt │ │ │ ├── tahoma_8_bold.txt │ │ │ └── trebuchetMS_10_bold.txt │ │ │ ├── latin_classifier.hxx │ │ │ └── latin_classifier.names.hxx │ ├── learn.ok │ │ ├── accents-maj.txt │ │ ├── accents-min.txt │ │ ├── chiffres.txt │ │ ├── cyrillic_tahoma_8_bold.repl │ │ ├── cyrillic_tahoma_8_bold │ │ │ ├── accents.pbm │ │ │ ├── accents.txt │ │ │ ├── chiffres.pbm │ │ │ ├── chiffres.txt │ │ │ ├── ligatures.pbm │ │ │ ├── ligatures.txt │ │ │ ├── ligatures2.pbm │ │ │ ├── ligatures2.txt │ │ │ ├── majuscules.pbm │ │ │ ├── majuscules.txt │ │ │ ├── majuscules_cyrillic_chars.pbm │ │ │ ├── majuscules_cyrillic_chars.txt │ │ │ ├── minuscules.pbm │ │ │ ├── minuscules.txt │ │ │ ├── minuscules_cyrillic_chars.pbm │ │ │ ├── minuscules_cyrillic_chars.txt │ │ │ ├── speciaux.pbm │ │ │ ├── speciaux.txt │ │ │ ├── symbols.pbm │ │ │ ├── symbols.txt │ │ │ ├── —.pbm │ │ │ └── —.txt │ │ ├── majuscules.txt │ │ ├── minuscules.txt │ │ ├── misc.txt │ │ ├── russian.repl │ │ ├── russian │ │ │ ├── compose_letters.pbm │ │ │ ├── compose_letters.txt │ │ │ ├── lower_cyrillic_chars.pbm │ │ │ ├── lower_cyrillic_chars.txt │ │ │ ├── special_chars.pbm │ │ │ ├── special_chars.txt │ │ │ ├── upper_cyrillic_chars.pbm │ │ │ ├── upper_cyrillic_chars.txt │ │ │ ├── КЛ ТУ.pbm │ │ │ ├── КЛ ТУ.txt │ │ │ ├── ту ѳѵ.pbm │ │ │ └── ту ѳѵ.txt │ │ ├── segoeUI_11 │ │ │ ├── $ùé=è)%.pbm │ │ │ ├── $ùé=è)%.txt │ │ │ ├── &'(-_çà°+.pbm │ │ │ ├── &'(-_çà°+.txt │ │ │ ├── ,..pbm │ │ │ ├── ,..txt │ │ │ ├── 01234.pbm │ │ │ ├── 01234.txt │ │ │ ├── 56789.pbm │ │ │ ├── 56789.txt │ │ │ ├── @{}~.pbm │ │ │ ├── @{}~.txt │ │ │ ├── AdminPowerryrv-Bloc-notes.pbm │ │ │ ├── AdminPowerryrv-Bloc-notes.txt │ │ │ ├── Administrateurcolonlnvitedecommandes.pbm │ │ │ ├── Administrateurcolonlnvitedecommandes.txt │ │ │ ├── Analyseurdeperformances.pbm │ │ │ ├── Analyseurdeperformances.txt │ │ │ ├── AssistantKitd'administrationduGestionnairedesconnexions.pbm │ │ │ ├── AssistantKitd'administrationduGestionnairedesconnexions.txt │ │ │ ├── Bibliothèques.pbm │ │ │ ├── Bibliothèques.txt │ │ │ ├── Consoledegestiondel'accèsdistant.pbm │ │ │ ├── Consoledegestiondel'accèsdistant.txt │ │ │ ├── DomainesetapprobationsActiveDirectory.pbm │ │ │ ├── DomainesetapprobationsActiveDirectory.txt │ │ │ ├── Gestiondel'ordinateur.pbm │ │ │ ├── Gestiondel'ordinateur.txt │ │ │ ├── GestionnaireDNS.pbm │ │ │ ├── GestionnaireDNS.txt │ │ │ ├── ModuleActiveDirectorypourWindowsPowerShell.pbm │ │ │ ├── ModuleActiveDirectorypourWindowsPowerShell.txt │ │ │ ├── Routageetaccèsdistant.pbm │ │ │ ├── Routageetaccèsdistant.txt │ │ │ ├── ServeurNPS(NetworkPolicyServer).pbm │ │ │ ├── ServeurNPS(NetworkPolicyServer).txt │ │ │ ├── SiteetservicesActiveDirectory.pbm │ │ │ ├── SiteetservicesActiveDirectory.txt │ │ │ ├── SélectionnerWindowsPowerShell(x86).pbm │ │ │ ├── SélectionnerWindowsPowerShell(x86).txt │ │ │ ├── UtilisateursetordinateursActiveDirectory.pbm │ │ │ ├── UtilisateursetordinateursActiveDirectory.txt │ │ │ ├── WindowsPowerShell(x86).pbm │ │ │ ├── WindowsPowerShell(x86).txt │ │ │ ├── abcde-maj.pbm │ │ │ ├── abcde-maj.txt │ │ │ ├── abcdef-min.pbm │ │ │ ├── abcdef-min.txt │ │ │ ├── accents-maj.pbm │ │ │ ├── accents-maj.txt │ │ │ ├── accents-min.pbm │ │ │ ├── accents-min.txt │ │ │ ├── chiffres.pbm │ │ │ ├── chiffres.txt │ │ │ ├── fghij-maj.pbm │ │ │ ├── fghij-maj.txt │ │ │ ├── fififi.pbm │ │ │ ├── fififi.txt │ │ │ ├── ghijk-min.pbm │ │ │ ├── ghijk-min.txt │ │ │ ├── klmno-maj.pbm │ │ │ ├── klmno-maj.txt │ │ │ ├── ligatures.pbm │ │ │ ├── ligatures.txt │ │ │ ├── lmno-min.pbm │ │ │ ├── lmno-min.txt │ │ │ ├── majuscules.pbm │ │ │ ├── majuscules.txt │ │ │ ├── minuscules.pbm │ │ │ ├── minuscules.txt │ │ │ ├── pqrst-min.pbm │ │ │ ├── pqrst-min.txt │ │ │ ├── qrstu-maj.pbm │ │ │ ├── qrstu-maj.txt │ │ │ ├── rv_u.pbm │ │ │ ├── rv_u.txt │ │ │ ├── smoothing.pbm │ │ │ ├── smoothing.txt │ │ │ ├── smoothing2.pbm │ │ │ ├── smoothing2.txt │ │ │ ├── speciaux.pbm │ │ │ ├── speciaux.txt │ │ │ ├── symbols.pbm │ │ │ ├── symbols.txt │ │ │ ├── toto-Bloc-notes.pbm │ │ │ ├── toto-Bloc-notes.txt │ │ │ ├── uvwx-min.pbm │ │ │ ├── uvwx-min.txt │ │ │ ├── vxyz-maj.pbm │ │ │ ├── vxyz-maj.txt │ │ │ ├── win_sys_nslook.pbm │ │ │ ├── win_sys_nslook.txt │ │ │ ├── yz-min.pbm │ │ │ └── yz-min.txt │ │ ├── segoeUI_8_bold │ │ │ ├── accents-maj.pbm │ │ │ ├── accents-maj.txt │ │ │ ├── accents-min.pbm │ │ │ ├── accents-min.txt │ │ │ ├── chiffres.pbm │ │ │ ├── chiffres.txt │ │ │ ├── ligatures.pbm │ │ │ ├── ligatures.txt │ │ │ ├── ligatures2.pbm │ │ │ ├── ligatures2.txt │ │ │ ├── majuscules.pbm │ │ │ ├── majuscules.txt │ │ │ ├── minuscules.pbm │ │ │ ├── minuscules.txt │ │ │ ├── speciaux.pbm │ │ │ ├── speciaux.txt │ │ │ ├── symbols.pbm │ │ │ └── symbols.txt │ │ ├── speciaux.txt │ │ ├── symbols.txt │ │ ├── tahoma_8_bold │ │ │ ├── accents.pbm │ │ │ ├── accents.txt │ │ │ ├── chiffres.pbm │ │ │ ├── chiffres.txt │ │ │ ├── ligatures.pbm │ │ │ ├── ligatures.txt │ │ │ ├── ligatures2.pbm │ │ │ ├── ligatures2.txt │ │ │ ├── majuscules.pbm │ │ │ ├── majuscules.txt │ │ │ ├── minuscules.pbm │ │ │ ├── minuscules.txt │ │ │ ├── speciaux.pbm │ │ │ ├── speciaux.txt │ │ │ ├── symbols.pbm │ │ │ ├── symbols.txt │ │ │ ├── —.pbm │ │ │ └── —.txt │ │ └── trebuchetMS_10_bold │ │ │ ├── accents-maj.pbm │ │ │ ├── accents-maj.txt │ │ │ ├── accents-min.pbm │ │ │ ├── accents-min.txt │ │ │ ├── chiffres.pbm │ │ │ ├── chiffres.txt │ │ │ ├── ligatures.pbm │ │ │ ├── ligatures.txt │ │ │ ├── ligatures_f.pbm │ │ │ ├── ligatures_f.txt │ │ │ ├── ligatures_x.pbm │ │ │ ├── ligatures_x.txt │ │ │ ├── majuscules.pbm │ │ │ ├── majuscules.txt │ │ │ ├── minuscules.pbm │ │ │ ├── minuscules.txt │ │ │ ├── speciaux.pbm │ │ │ ├── speciaux.txt │ │ │ ├── symbols.pbm │ │ │ └── symbols.txt │ ├── learn.origin │ │ ├── $ùé=è)%.png │ │ ├── &'(-_çà°+.png │ │ ├── ,..png │ │ ├── 01234.png │ │ ├── 56789.png │ │ ├── @{}~.png │ │ ├── abcde-maj.png │ │ ├── abcdef-min.png │ │ ├── fghij-maj.png │ │ ├── fififi.png │ │ ├── ghijk-min.png │ │ ├── klmnop-maj.png │ │ ├── lmno-min.png │ │ ├── pqrst-min.png │ │ ├── qrstu-maj.png │ │ ├── uvwx-min.png │ │ ├── vxyz-maj.png │ │ └── yz-min.png │ ├── learning.cc │ ├── learning.sh │ ├── test.sh │ └── whitespace_width ├── ppocr │ ├── mln │ │ └── image │ │ │ └── image2d.hh │ └── ppocr │ │ ├── box_char │ │ ├── box.cpp │ │ ├── box.hpp │ │ ├── make_box_character.cpp │ │ └── make_box_character.hpp │ │ ├── container │ │ └── trie.hpp │ │ ├── defined_loader.hpp │ │ ├── image │ │ ├── coordinate.cpp │ │ ├── coordinate.hpp │ │ ├── image.cpp │ │ ├── image.hpp │ │ ├── image_from_file.cpp │ │ ├── image_from_file.hpp │ │ ├── image_from_string.cpp │ │ ├── image_from_string.hpp │ │ └── pixel.hpp │ │ ├── loader2 │ │ ├── datas_loader.hpp │ │ ├── glyphs_loader.cpp │ │ ├── glyphs_loader.hpp │ │ ├── image_io.cpp │ │ └── image_io.hpp │ │ ├── math │ │ └── almost_equal.hpp │ │ ├── ocr2 │ │ ├── ambiguous.hpp │ │ ├── cache.hpp │ │ ├── compute_image.hpp │ │ ├── data_indexes_by_words.cpp │ │ ├── data_indexes_by_words.hpp │ │ ├── data_indexes_ordered.hpp │ │ ├── disambiguous_with_dict.cpp │ │ ├── disambiguous_with_dict.hpp │ │ ├── filter_by_font.cpp │ │ ├── filter_by_font.hpp │ │ ├── filter_by_lines.cpp │ │ ├── filter_by_lines.hpp │ │ ├── glyphs.cpp │ │ ├── glyphs.hpp │ │ ├── image_context.hpp │ │ ├── indexes_ordered.hpp │ │ ├── insert_views.hpp │ │ ├── probabilities.hpp │ │ ├── reduce_universe.hpp │ │ ├── replacement.cpp │ │ ├── replacement.hpp │ │ ├── sort_probabilities.hpp │ │ ├── views_index_ordered.hpp │ │ ├── word_lines.cpp │ │ ├── word_lines.hpp │ │ └── words_infos.hpp │ │ ├── spell │ │ ├── dictionary.cpp │ │ ├── dictionary.hpp │ │ └── word_disambiguouser.hpp │ │ ├── strategies │ │ ├── alternations.cpp │ │ ├── alternations.hpp │ │ ├── density.cpp │ │ ├── density.hpp │ │ ├── dvdirection.cpp │ │ ├── dvdirection.hpp │ │ ├── dvdirection2.cpp │ │ ├── dvdirection2.hpp │ │ ├── dvgravity.cpp │ │ ├── dvgravity.hpp │ │ ├── dvgravity2.cpp │ │ ├── dvgravity2.hpp │ │ ├── dzdensity.cpp │ │ ├── dzdensity.hpp │ │ ├── hbar.cpp │ │ ├── hbar.hpp │ │ ├── hdirection.cpp │ │ ├── hdirection.hpp │ │ ├── hdirection2.cpp │ │ ├── hdirection2.hpp │ │ ├── hgravity.cpp │ │ ├── hgravity.hpp │ │ ├── hgravity2.cpp │ │ ├── hgravity2.hpp │ │ ├── proportionality.cpp │ │ ├── proportionality.hpp │ │ ├── proportionality_zone.cpp │ │ ├── proportionality_zone.hpp │ │ ├── relationship │ │ │ ├── array_compare.hpp │ │ │ ├── equal.hpp │ │ │ └── interval.hpp │ │ ├── utils │ │ │ ├── context.hpp │ │ │ ├── count_zone.hpp │ │ │ ├── diagonal_vertical_direction.hpp │ │ │ ├── diagonal_vertical_gravity.hpp │ │ │ ├── horizontal_direction.hpp │ │ │ ├── horizontal_gravity.hpp │ │ │ ├── horizontal_zone.hpp │ │ │ ├── relationship.hpp │ │ │ └── top_bottom.hpp │ │ ├── zone.cpp │ │ └── zone.hpp │ │ └── utils │ │ ├── enum_io.hpp │ │ ├── image_compare.cpp │ │ ├── image_compare.hpp │ │ ├── integer_iterator.hpp │ │ ├── make_unique.hpp │ │ ├── range_iterator.hpp │ │ ├── read_definitions_file_and_normalize.cpp │ │ ├── read_definitions_file_and_normalize.hpp │ │ ├── read_file.hpp │ │ ├── reindex.hpp │ │ ├── unique_sort_definition.cpp │ │ ├── unique_sort_definition.hpp │ │ └── utf.hpp ├── qtclient │ ├── Jamroot │ ├── README.md │ ├── src │ │ ├── client_qt_spec.hpp │ │ ├── client_redemption │ │ │ ├── client_channels │ │ │ │ ├── client_cliprdr_channel.cpp │ │ │ │ ├── client_cliprdr_channel.hpp │ │ │ │ ├── client_rdpdr_channel.cpp │ │ │ │ ├── client_rdpdr_channel.hpp │ │ │ │ ├── client_rdpsnd_channel.cpp │ │ │ │ ├── client_rdpsnd_channel.hpp │ │ │ │ ├── client_remoteapp_channel.cpp │ │ │ │ ├── client_remoteapp_channel.hpp │ │ │ │ └── fake_client_mod.hpp │ │ │ ├── client_config │ │ │ │ ├── client_redemption_config.cpp │ │ │ │ └── client_redemption_config.hpp │ │ │ ├── client_front.hpp │ │ │ ├── client_input_output_api │ │ │ │ ├── rdp_clipboard_config.cpp │ │ │ │ ├── rdp_clipboard_config.hpp │ │ │ │ ├── rdp_disk_config.cpp │ │ │ │ ├── rdp_disk_config.hpp │ │ │ │ └── rdp_sound_config.hpp │ │ │ ├── client_redemption.hpp │ │ │ ├── client_redemption_api.hpp │ │ │ └── mod_wrapper │ │ │ │ ├── client_callback.hpp │ │ │ │ └── client_channel_mod.hpp │ │ ├── main_qt_client_redemption.cpp │ │ ├── qt_graphics_components │ │ │ ├── qt_form_window.hpp │ │ │ ├── qt_options_window.hpp │ │ │ ├── qt_progress_bar_window.hpp │ │ │ └── qt_screen_window.hpp │ │ └── qt_input_output_api │ │ │ ├── IO_disk.hpp │ │ │ ├── graphics.cpp │ │ │ ├── graphics.hpp │ │ │ ├── keymaps │ │ │ └── qt_scancode_keymap.hpp │ │ │ ├── qt_IO_graphic_mouse_keyboard.hpp │ │ │ ├── qt_input_output_clipboard.cpp │ │ │ ├── qt_input_output_clipboard.hpp │ │ │ ├── qt_input_socket.hpp │ │ │ └── qt_output_sound.hpp │ ├── targets.jam │ ├── tests │ │ └── client_redemption │ │ │ └── client_channels │ │ │ ├── test_client_cliprdr_channel.cpp │ │ │ ├── test_client_rdpdr_channel.cpp │ │ │ ├── test_client_rdpsnd_channel.cpp │ │ │ └── test_client_remoteapp_channel.cpp │ └── tools │ │ └── gen_targets.sh ├── qtclient2 │ ├── Jamroot │ ├── README.md │ ├── src │ │ ├── client_qt_spec.hpp │ │ ├── qtclient │ │ │ ├── event_manager.cpp │ │ │ ├── event_manager.hpp │ │ │ ├── graphics │ │ │ │ ├── cursor_cache.cpp │ │ │ │ ├── cursor_cache.hpp │ │ │ │ ├── graphics.cpp │ │ │ │ ├── graphics.hpp │ │ │ │ ├── rdp_painter.cpp │ │ │ │ └── rdp_painter.hpp │ │ │ ├── inputs.hpp │ │ │ ├── inputs │ │ │ │ ├── send_mouse_event.cpp │ │ │ │ ├── send_mouse_event.hpp │ │ │ │ ├── send_scancode.cpp │ │ │ │ └── send_scancode.hpp │ │ │ ├── profile │ │ │ │ ├── cli_parse_profile.cpp │ │ │ │ ├── cli_parse_profile.hpp │ │ │ │ ├── persistent_profiles.cpp │ │ │ │ ├── persistent_profiles.hpp │ │ │ │ ├── profile.hpp │ │ │ │ ├── profile_as_cli_options.hpp │ │ │ │ ├── profiles.hpp │ │ │ │ ├── widget_profile.cpp │ │ │ │ └── widget_profile.hpp │ │ │ ├── session.hpp │ │ │ ├── socket.cpp │ │ │ ├── socket.hpp │ │ │ └── widget │ │ │ │ ├── screen_widget.cpp │ │ │ │ └── screen_widget.hpp │ │ ├── qtclient2.cpp │ │ └── utils │ │ │ └── config_enum_description_to_array.hpp │ ├── targets.jam │ ├── tests │ │ ├── qtclient │ │ │ ├── graphics │ │ │ │ ├── test_cursor_cache.cpp │ │ │ │ └── test_rdp_painter.cpp │ │ │ └── profile │ │ │ │ ├── test_profile.cpp │ │ │ │ └── test_widget_profile.cpp │ │ └── utils │ │ │ └── test_config_enum_description_to_array.cpp │ └── tools │ │ └── gen_targets.sh └── redemption_configs │ ├── Jamroot │ ├── README.md │ ├── autogen │ ├── doc │ │ ├── acl_dialog.txt │ │ ├── config.json │ │ └── enums.json │ ├── include │ │ └── configs │ │ │ └── autogen │ │ │ ├── acl_and_spec_type.hpp │ │ │ ├── authid.hpp │ │ │ ├── cfg_ini_pack.hpp │ │ │ ├── cp_mapping.hpp │ │ │ ├── enums.hpp │ │ │ ├── enums_func_ini.tcc │ │ │ ├── ini_spec.hpp │ │ │ ├── max_str_buffer_size.hpp │ │ │ ├── rdp_cp_spec.hpp │ │ │ ├── set_value.tcc │ │ │ ├── str_authid.hpp │ │ │ ├── str_ini.hpp │ │ │ ├── variables_configuration.hpp │ │ │ ├── variables_configuration_fwd.hpp │ │ │ └── vnc_cp_spec.hpp │ ├── spec │ │ ├── rdp-sogisces_1.3_2030.spec │ │ ├── rdp.spec │ │ └── vnc.spec │ └── src │ │ └── include │ │ └── debug_verbose_description.hpp │ ├── configs_specs │ └── configs │ │ └── specs │ │ ├── config_spec.hpp │ │ └── config_type.hpp │ ├── extract_verbose.sh │ ├── pages │ └── config.html │ ├── redemption_src │ └── configs │ │ ├── acl_proxy_communication_mask.hpp │ │ ├── config.cpp │ │ ├── config.hpp │ │ ├── config_access.hpp │ │ ├── io.hpp │ │ ├── loggable.hpp │ │ ├── parsers │ │ └── parse_performance_flags.hpp │ │ └── spec_types.hpp │ ├── src │ └── configs │ │ ├── attributes │ │ └── spec.hpp │ │ ├── enumeration.hpp │ │ ├── generators │ │ ├── config.hpp │ │ ├── cpp_enumeration.hpp │ │ └── utils │ │ │ ├── json.hpp │ │ │ ├── multi_filename_writer.hpp │ │ │ └── write_template.hpp │ │ ├── type_name.hpp │ │ ├── write_config_spec.cpp │ │ └── write_cpp_enumeration.cpp │ ├── tests │ ├── test_config.cpp │ ├── test_config_assign.cpp │ ├── test_include.cpp │ └── test_parser.cpp │ └── tools │ └── build_pages.sh ├── ruff.toml ├── sonar-project.properties ├── src ├── RAIL │ ├── client_execute.cpp │ └── client_execute.hpp ├── acl │ ├── acl_field_mask.hpp │ ├── acl_report.hpp │ ├── acl_serializer.cpp │ ├── acl_serializer.hpp │ ├── acl_update_session_report.hpp │ ├── acl_verbose.hpp │ ├── auth_api.hpp │ ├── connect_to_target_host.hpp │ ├── file_system_license_store.hpp │ ├── kv_list_from_strings.cpp │ ├── kv_list_from_strings.hpp │ ├── license_api.hpp │ ├── mod_pack.hpp │ ├── mod_wrapper.cpp │ ├── mod_wrapper.hpp │ ├── module_manager │ │ ├── create_module_rail.cpp │ │ ├── create_module_rail.hpp │ │ ├── create_module_rdp.cpp │ │ ├── create_module_rdp.hpp │ │ ├── create_module_vnc.cpp │ │ ├── create_module_vnc.hpp │ │ ├── enums.hpp │ │ ├── mod_factory.cpp │ │ ├── mod_factory.hpp │ │ └── update_application_driver.hpp │ ├── session_logfile.cpp │ └── session_logfile.hpp ├── capture │ ├── agent_data_extractor.cpp │ ├── agent_data_extractor.hpp │ ├── capture.cpp │ ├── capture.hpp │ ├── capture_params.hpp │ ├── capture_without_ffmpeg.cpp │ ├── capture_without_ffmpeg.hpp │ ├── cryptofile.hpp │ ├── drawable_params.hpp │ ├── fdx_capture.cpp │ ├── fdx_capture.hpp │ ├── file_to_graphic.cpp │ ├── file_to_graphic.hpp │ ├── file_to_graphic_verbose.hpp │ ├── full_video_params.hpp │ ├── kbd_log_params.hpp │ ├── lazy_drawable_pointer.hpp │ ├── md_hash.hpp │ ├── meta_params.hpp │ ├── mwrm3.hpp │ ├── notify_next_video.hpp │ ├── ocr │ │ ├── bitmap_as_ocr_image.hpp │ │ ├── classification.hh │ │ ├── extract_bars.hh │ │ ├── extract_data.hh │ │ ├── extract_text_classification.hh │ │ ├── fonts.hpp │ │ ├── io_char_box.hpp │ │ ├── labelize.hh │ │ ├── locale │ │ │ ├── latin_to_cyrillic.cpp │ │ │ ├── latin_to_cyrillic.hpp │ │ │ └── locale_id.hpp │ │ └── rgb8.hpp │ ├── ocr_params.hpp │ ├── params_from_ini.cpp │ ├── params_from_ini.hpp │ ├── pattern_params.hpp │ ├── png_params.hpp │ ├── rail_screen_computation.cpp │ ├── rail_screen_computation.hpp │ ├── rdp_ppocr │ │ ├── extract_text.hpp │ │ ├── get_ocr_constants.hpp │ │ ├── get_ocr_constants_from_locale_id.cpp │ │ ├── get_ocr_constants_from_locale_id.hpp │ │ ├── ocr_context.hpp │ │ └── ocr_datas_constant.hpp │ ├── redis.cpp │ ├── redis.hpp │ ├── redis_params.hpp │ ├── redis_session.cpp │ ├── redis_session.hpp │ ├── regions_capture.cpp │ ├── regions_capture.hpp │ ├── save_state_chunk.hpp │ ├── sequenced_video_params.hpp │ ├── session_update_buffer.cpp │ ├── session_update_buffer.hpp │ ├── title_extractors │ │ ├── agent_title_extractor.hpp │ │ ├── ocr_title.hpp │ │ ├── ocr_title_extractor_builder.hpp │ │ ├── ocr_title_filter.hpp │ │ ├── ocr_titles_extractor.hpp │ │ ├── ppocr_titles_extractor.hpp │ │ └── title_extractor_api.hpp │ ├── utils │ │ ├── drawable_image_view.hpp │ │ ├── pattern_searcher.cpp │ │ ├── pattern_searcher.hpp │ │ ├── pattutils.cpp │ │ └── pattutils.hpp │ ├── video_capture.cpp │ ├── video_capture.hpp │ ├── video_params.hpp │ ├── video_recorder.cpp │ ├── video_recorder.hpp │ ├── wrm_capture.hpp │ ├── wrm_chunk_type.hpp │ ├── wrm_meta_chunk.hpp │ └── wrm_params.hpp ├── client │ └── common │ │ ├── new_mod_rdp.cpp │ │ ├── new_mod_rdp.hpp │ │ ├── new_mod_vnc.cpp │ │ ├── new_mod_vnc.hpp │ │ ├── rdp_pointer_to_rgba8888.cpp │ │ └── rdp_pointer_to_rgba8888.hpp ├── core │ ├── ERREF │ │ └── ntstatus.hpp │ ├── FSCC │ │ └── FileInformation.hpp │ ├── RDP │ │ ├── GraphicUpdatePDU.hpp │ │ ├── MonitorLayoutPDU.hpp │ │ ├── PersistentKeyListPDU.hpp │ │ ├── RDPDrawable.cpp │ │ ├── RDPDrawable.hpp │ │ ├── RDPSerializer.hpp │ │ ├── RDPSerializerVerbose.hpp │ │ ├── RefreshRectPDU.hpp │ │ ├── SaveSessionInfoPDU.hpp │ │ ├── ServerRedirection.hpp │ │ ├── SuppressOutputPDU.hpp │ │ ├── autoreconnect.hpp │ │ ├── bitmapupdate.hpp │ │ ├── caches │ │ │ ├── bmpcache.hpp │ │ │ ├── bmpcachepersister.hpp │ │ │ ├── brushcache.hpp │ │ │ ├── glyphcache.hpp │ │ │ └── pointercache.hpp │ │ ├── capabilities │ │ │ ├── activate.hpp │ │ │ ├── bitmapcachehostsupport.hpp │ │ │ ├── bitmapcodecs.hpp │ │ │ ├── bmpcache2.hpp │ │ │ ├── cap_bitmap.hpp │ │ │ ├── cap_bmpcache.hpp │ │ │ ├── cap_brushcache.hpp │ │ │ ├── cap_font.hpp │ │ │ ├── cap_glyphcache.hpp │ │ │ ├── cap_share.hpp │ │ │ ├── cap_sound.hpp │ │ │ ├── colcache.hpp │ │ │ ├── common.hpp │ │ │ ├── compdesk.hpp │ │ │ ├── control.hpp │ │ │ ├── drawgdiplus.hpp │ │ │ ├── frameacknowledge.hpp │ │ │ ├── general.hpp │ │ │ ├── input.hpp │ │ │ ├── largepointer.hpp │ │ │ ├── multifragmentupdate.hpp │ │ │ ├── offscreencache.hpp │ │ │ ├── order.hpp │ │ │ ├── pointer.hpp │ │ │ ├── rail.hpp │ │ │ ├── surfacecommands.hpp │ │ │ ├── virchan.hpp │ │ │ └── window.hpp │ │ ├── channels │ │ │ ├── drdynvc.hpp │ │ │ ├── rdpdr.hpp │ │ │ └── rdpdr_completion_id_manager.hpp │ │ ├── clipboard.hpp │ │ ├── clipboard │ │ │ ├── format_list_extract.hpp │ │ │ ├── format_list_serialize.hpp │ │ │ └── format_name.hpp │ │ ├── dwt.cpp │ │ ├── dwt.hpp │ │ ├── fastpath.hpp │ │ ├── gcc.hpp │ │ ├── gcc │ │ │ ├── data_block_type.hpp │ │ │ └── userdata │ │ │ │ ├── cs_cluster.hpp │ │ │ │ ├── cs_core.hpp │ │ │ │ ├── cs_mcs_msgchannel.hpp │ │ │ │ ├── cs_monitor.hpp │ │ │ │ ├── cs_monitor_ex.hpp │ │ │ │ ├── cs_multitransport.hpp │ │ │ │ ├── cs_net.hpp │ │ │ │ ├── cs_security.hpp │ │ │ │ ├── mcs_channels.hpp │ │ │ │ ├── sc_core.hpp │ │ │ │ ├── sc_net.hpp │ │ │ │ └── sc_sec1.hpp │ │ ├── lic.hpp │ │ ├── logon.hpp │ │ ├── mcs.hpp │ │ ├── mppc.cpp │ │ ├── mppc.hpp │ │ ├── mppc │ │ │ ├── mppc_40.hpp │ │ │ ├── mppc_50.hpp │ │ │ ├── mppc_60.hpp │ │ │ ├── mppc_61.hpp │ │ │ └── mppc_utils.hpp │ │ ├── nego.cpp │ │ ├── nego.hpp │ │ ├── nla │ │ │ ├── credssp.hpp │ │ │ ├── kerberos.cpp │ │ │ ├── kerberos.hpp │ │ │ ├── nla_client_kerberos.hpp │ │ │ ├── nla_client_ntlm.hpp │ │ │ ├── nla_server_kerberos.hpp │ │ │ ├── nla_server_krb5.hpp │ │ │ ├── nla_server_ntlm.hpp │ │ │ └── ntlm_message.hpp │ │ ├── non_null_terminated_utf16_from_utf8.hpp │ │ ├── orders │ │ │ ├── AlternateSecondaryWindowing.hpp │ │ │ ├── RDPOrdersCommon.hpp │ │ │ ├── RDPOrdersPrimaryDstBlt.hpp │ │ │ ├── RDPOrdersPrimaryEllipseCB.hpp │ │ │ ├── RDPOrdersPrimaryEllipseSC.hpp │ │ │ ├── RDPOrdersPrimaryGlyphIndex.hpp │ │ │ ├── RDPOrdersPrimaryLineTo.hpp │ │ │ ├── RDPOrdersPrimaryMem3Blt.hpp │ │ │ ├── RDPOrdersPrimaryMemBlt.hpp │ │ │ ├── RDPOrdersPrimaryMultiDstBlt.hpp │ │ │ ├── RDPOrdersPrimaryMultiOpaqueRect.hpp │ │ │ ├── RDPOrdersPrimaryMultiPatBlt.hpp │ │ │ ├── RDPOrdersPrimaryMultiScrBlt.hpp │ │ │ ├── RDPOrdersPrimaryOpaqueRect.hpp │ │ │ ├── RDPOrdersPrimaryPatBlt.hpp │ │ │ ├── RDPOrdersPrimaryPolygonCB.hpp │ │ │ ├── RDPOrdersPrimaryPolygonSC.hpp │ │ │ ├── RDPOrdersPrimaryPolyline.hpp │ │ │ ├── RDPOrdersPrimarySaveBitmap.hpp │ │ │ ├── RDPOrdersPrimaryScrBlt.hpp │ │ │ ├── RDPOrdersSecondaryBmpCache.hpp │ │ │ ├── RDPOrdersSecondaryBrushCache.hpp │ │ │ ├── RDPOrdersSecondaryColorCache.hpp │ │ │ ├── RDPOrdersSecondaryFrameMarker.hpp │ │ │ ├── RDPOrdersSecondaryGlyphCache.hpp │ │ │ ├── RDPSurfaceCommands.hpp │ │ │ ├── for_each_delta_rect.hpp │ │ │ ├── remoteFx.cpp │ │ │ └── remoteFx.hpp │ │ ├── out_per_bstream.hpp │ │ ├── protocol.hpp │ │ ├── rdp_draw_glyphs.hpp │ │ ├── rdp_performance_flags.hpp │ │ ├── rdp_pointer.cpp │ │ ├── rdp_pointer.hpp │ │ ├── remote_programs.hpp │ │ ├── rlgr.cpp │ │ ├── rlgr.hpp │ │ ├── sec.hpp │ │ ├── share.hpp │ │ ├── slowpath.hpp │ │ ├── state_chunk.hpp │ │ ├── tpdu_buffer.hpp │ │ ├── virtual_channel_pdu.hpp │ │ ├── windows_execute_shell_params.hpp │ │ └── x224.hpp │ ├── RDPEA │ │ └── audio_output.hpp │ ├── SMB2 │ │ └── MessageSyntax.hpp │ ├── WMF │ │ └── MetaFileFormat.hpp │ ├── app_path.cpp │ ├── app_path.hpp │ ├── auth_channel_name.hpp │ ├── buf64k.hpp │ ├── callback.hpp │ ├── certificate_enums.hpp │ ├── channel_list.hpp │ ├── channel_names.hpp │ ├── channels_authorizations.cpp │ ├── channels_authorizations.hpp │ ├── check_files.cpp │ ├── check_files.hpp │ ├── client_info.hpp │ ├── dynamic_channels_authorizations.cpp │ ├── dynamic_channels_authorizations.hpp │ ├── error.cpp │ ├── error.hpp │ ├── events.hpp │ ├── file_system_virtual_channel_params.hpp │ ├── font.cpp │ ├── font.hpp │ ├── front_api.hpp │ ├── glyph_to_24_bitmap.hpp │ ├── guest_ctx.hpp │ ├── listen.hpp │ ├── log_certificate_status.cpp │ ├── log_certificate_status.hpp │ ├── log_id.hpp │ ├── mainloop.cpp │ ├── mainloop.hpp │ ├── misc.hpp │ ├── pid_file.cpp │ ├── pid_file.hpp │ ├── server_cert_params.hpp │ ├── session.cpp │ ├── session.hpp │ ├── session_events.cpp │ ├── session_events.hpp │ ├── session_verbose.hpp │ ├── stream_throw_helpers.hpp │ └── window_constants.hpp ├── cxx │ ├── compiler_version.hpp │ ├── cxx.hpp │ └── diagnostic.hpp ├── front │ └── front.hpp ├── gdi │ ├── capture_api.hpp │ ├── capture_probe_api.hpp │ ├── clip_from_cmd.cpp │ ├── clip_from_cmd.hpp │ ├── draw_utils.cpp │ ├── draw_utils.hpp │ ├── graphic_api.cpp │ ├── graphic_api.hpp │ ├── graphic_api_forwarder.hpp │ ├── graphic_cmd_color.hpp │ ├── graphic_dispatcher.hpp │ ├── kbd_input_api.hpp │ ├── osd_api.hpp │ ├── protected_graphics.cpp │ ├── protected_graphics.hpp │ ├── rect_tracker.cpp │ ├── rect_tracker.hpp │ ├── relayout_api.hpp │ ├── resize_api.hpp │ ├── screen_functions.cpp │ ├── screen_functions.hpp │ ├── screen_info.hpp │ ├── subrect4.hpp │ ├── text.cpp │ ├── text.hpp │ └── updatable_graphics.hpp ├── headlessclient │ ├── headless_cli_options.cpp │ ├── headless_cli_options.hpp │ ├── headless_command.cpp │ ├── headless_command.hpp │ ├── headless_command_generator.cpp │ ├── headless_command_generator.hpp │ ├── headless_command_reader.cpp │ ├── headless_command_reader.hpp │ ├── headless_command_values.hpp │ ├── headless_configuration.cpp │ ├── headless_configuration.hpp │ ├── headless_graphics.cpp │ ├── headless_graphics.hpp │ ├── headless_path.cpp │ ├── headless_path.hpp │ ├── headless_repl.cpp │ ├── headless_repl.hpp │ ├── headless_wrm_capture.hpp │ ├── input_collector.cpp │ └── input_collector.hpp ├── keyboard │ ├── kbdtypes.hpp │ ├── key_mod_flags.hpp │ ├── keylayout.hpp │ ├── keylayouts.cpp │ ├── keylayouts.hpp │ ├── keymap.cpp │ ├── keymap.hpp │ ├── keymapsym.cpp │ └── keymapsym.hpp ├── lib │ ├── credis.cpp │ ├── credis.hpp │ ├── do_recorder.cpp │ ├── do_recorder.hpp │ ├── scytale.cpp │ └── scytale.hpp ├── main │ ├── extract_text.cpp │ ├── headlessclient.cpp │ ├── ini_checker.cpp │ ├── main.cpp │ ├── mwrm3_editor.cpp │ ├── nla_server_cli.cpp │ ├── ppocr_extract_text.cpp │ ├── proxy_recorder_cli.cpp │ └── redrec.cpp ├── mod │ ├── file_validator_service.hpp │ ├── internal │ │ ├── bouncer2_mod.cpp │ │ ├── bouncer2_mod.hpp │ │ ├── button_state.hpp │ │ ├── close_mod.cpp │ │ ├── close_mod.hpp │ │ ├── copy_paste.cpp │ │ ├── copy_paste.hpp │ │ ├── dialog_mod.cpp │ │ ├── dialog_mod.hpp │ │ ├── interactive_target_mod.cpp │ │ ├── interactive_target_mod.hpp │ │ ├── login_mod.cpp │ │ ├── login_mod.hpp │ │ ├── rail_mod_base.cpp │ │ ├── rail_mod_base.hpp │ │ ├── rail_module_host_mod.cpp │ │ ├── rail_module_host_mod.hpp │ │ ├── replay_mod.cpp │ │ ├── replay_mod.hpp │ │ ├── selector_mod.cpp │ │ ├── selector_mod.hpp │ │ ├── test_card_mod.cpp │ │ ├── test_card_mod.hpp │ │ ├── transition_mod.cpp │ │ ├── transition_mod.hpp │ │ ├── wait_mod.cpp │ │ ├── wait_mod.hpp │ │ ├── widget │ │ │ ├── button.cpp │ │ │ ├── button.hpp │ │ │ ├── composite.cpp │ │ │ ├── composite.hpp │ │ │ ├── delegated_copy.cpp │ │ │ ├── delegated_copy.hpp │ │ │ ├── dialog.cpp │ │ │ ├── dialog.hpp │ │ │ ├── edit.cpp │ │ │ ├── edit.hpp │ │ │ ├── edit_valid.cpp │ │ │ ├── edit_valid.hpp │ │ │ ├── event_notifier.hpp │ │ │ ├── help_icon.cpp │ │ │ ├── help_icon.hpp │ │ │ ├── image.cpp │ │ │ ├── image.hpp │ │ │ ├── interactive_target.cpp │ │ │ ├── interactive_target.hpp │ │ │ ├── label.cpp │ │ │ ├── label.hpp │ │ │ ├── language_button.cpp │ │ │ ├── language_button.hpp │ │ │ ├── login.cpp │ │ │ ├── login.hpp │ │ │ ├── module_host.cpp │ │ │ ├── module_host.hpp │ │ │ ├── multiline.cpp │ │ │ ├── multiline.hpp │ │ │ ├── number_edit.cpp │ │ │ ├── number_edit.hpp │ │ │ ├── password.cpp │ │ │ ├── password.hpp │ │ │ ├── screen.cpp │ │ │ ├── screen.hpp │ │ │ ├── scroll.cpp │ │ │ ├── scroll.hpp │ │ │ ├── selector.cpp │ │ │ ├── selector.hpp │ │ │ ├── vertical_scroll_text.cpp │ │ │ ├── vertical_scroll_text.hpp │ │ │ ├── wab_close.cpp │ │ │ ├── wab_close.hpp │ │ │ ├── wait.cpp │ │ │ ├── wait.hpp │ │ │ ├── widget.hpp │ │ │ ├── widget_rect.cpp │ │ │ └── widget_rect.hpp │ │ ├── widget_test_mod.cpp │ │ └── widget_test_mod.hpp │ ├── load_server_cert_params.hpp │ ├── mod_api.hpp │ ├── null │ │ └── null.hpp │ ├── rdp │ │ ├── channels │ │ │ ├── asynchronous_task_container.hpp │ │ │ ├── base_channel.hpp │ │ │ ├── clipboard_virtual_channels_params.hpp │ │ │ ├── cliprdr_channel.cpp │ │ │ ├── cliprdr_channel.hpp │ │ │ ├── cliprdr_channel_send_and_receive.hpp │ │ │ ├── cliprdr_client_simulator.hpp │ │ │ ├── cliprdr_unexpected_pdu_filter.hpp │ │ │ ├── cliprdr_winxp_message_compensator.hpp │ │ │ ├── drdynvc_channel.hpp │ │ │ ├── rail_channel.hpp │ │ │ ├── rail_session_manager.hpp │ │ │ ├── rail_window_id_manager.hpp │ │ │ ├── rdp_session_probe_wrapper.cpp │ │ │ ├── rdp_session_probe_wrapper.hpp │ │ │ ├── rdpdr_asynchronous_task.hpp │ │ │ ├── rdpdr_channel.hpp │ │ │ ├── rdpdr_file_system_drive_manager.cpp │ │ │ ├── rdpdr_file_system_drive_manager.hpp │ │ │ ├── sespro_alternate_shell_based_launcher.hpp │ │ │ ├── sespro_api.hpp │ │ │ ├── sespro_channel.hpp │ │ │ ├── sespro_channel_params.cpp │ │ │ ├── sespro_channel_params.hpp │ │ │ ├── sespro_clipboard_based_launcher.cpp │ │ │ ├── sespro_clipboard_based_launcher.hpp │ │ │ ├── sespro_launcher.hpp │ │ │ ├── validator_params.hpp │ │ │ ├── virtual_channel_data_sender.hpp │ │ │ └── virtual_channel_filter.hpp │ │ ├── mod_rdp_callback.hpp │ │ ├── mod_rdp_factory.hpp │ │ ├── mod_rdp_variables.hpp │ │ ├── params │ │ │ ├── rdp_application_params.hpp │ │ │ └── rdp_session_probe_params.hpp │ │ ├── rdp.hpp │ │ ├── rdp_api.hpp │ │ ├── rdp_negociation.cpp │ │ ├── rdp_negociation.hpp │ │ ├── rdp_negociation_data.cpp │ │ ├── rdp_negociation_data.hpp │ │ ├── rdp_orders.hpp │ │ ├── rdp_params.hpp │ │ ├── rdp_verbose.hpp │ │ ├── server_transport_context.hpp │ │ └── windowing_api.hpp │ └── vnc │ │ ├── dsm.cpp │ │ ├── dsm.hpp │ │ ├── encoder │ │ ├── copyrect.cpp │ │ ├── copyrect.hpp │ │ ├── cursor.cpp │ │ ├── cursor.hpp │ │ ├── encoder_api.hpp │ │ ├── hextile.cpp │ │ ├── hextile.hpp │ │ ├── pointer_loader_vnc.hpp │ │ ├── raw.cpp │ │ ├── raw.hpp │ │ ├── rre.cpp │ │ ├── rre.hpp │ │ ├── zrle.cpp │ │ └── zrle.hpp │ │ ├── newline_convert.hpp │ │ ├── ultraVnc_protocol.txt │ │ ├── vnc.cpp │ │ ├── vnc.hpp │ │ └── vnc_verbose.hpp ├── proxy_recorder │ ├── extract_user_domain.hpp │ ├── nego_client.hpp │ ├── nego_server.hpp │ ├── nla_tee_transport.hpp │ ├── proxy_recorder.cpp │ └── proxy_recorder.hpp ├── system │ └── linux │ │ └── system │ │ ├── basic_hmac.hpp │ │ ├── scoped_crypto_init.hpp │ │ ├── scoped_ssl_init.hpp │ │ ├── ssl_md4.hpp │ │ ├── ssl_md5.hpp │ │ ├── ssl_mod_exp.hpp │ │ ├── ssl_rc4.hpp │ │ ├── ssl_sha1.hpp │ │ ├── ssl_sha256.hpp │ │ ├── tls_cert_to_escaped_string.hpp │ │ ├── tls_check_certificate.cpp │ │ ├── tls_check_certificate.hpp │ │ ├── tls_context.hpp │ │ └── urandom.hpp ├── translation │ ├── gettext.cpp │ ├── gettext.hpp │ ├── local_err_msg.cpp │ ├── local_err_msg.hpp │ ├── translation.cpp │ ├── translation.hpp │ ├── trkey.hpp │ ├── trkeys.hpp │ └── trkeys_def.hpp ├── transport │ ├── crypto_transport.cpp │ ├── crypto_transport.hpp │ ├── failure_simulation_socket_transport.hpp │ ├── file_transport.cpp │ ├── file_transport.hpp │ ├── gzip_compression_transport.cpp │ ├── gzip_compression_transport.hpp │ ├── in_multi_crypto_transport.cpp │ ├── in_multi_crypto_transport.hpp │ ├── mwrm_file_data.cpp │ ├── mwrm_file_data.hpp │ ├── mwrm_reader.cpp │ ├── mwrm_reader.hpp │ ├── out_filename_sequence_transport.cpp │ ├── out_filename_sequence_transport.hpp │ ├── out_meta_sequence_transport.cpp │ ├── out_meta_sequence_transport.hpp │ ├── recorder_transport.cpp │ ├── recorder_transport.hpp │ ├── replay_transport.cpp │ ├── replay_transport.hpp │ ├── snappy_compression_transport.cpp │ ├── snappy_compression_transport.hpp │ ├── socket_transport.cpp │ ├── socket_transport.hpp │ ├── transport.hpp │ ├── ws │ │ └── ws_protocol.hpp │ ├── ws_transport.cpp │ └── ws_transport.hpp └── utils │ ├── README.md │ ├── ascii.hpp │ ├── base64.cpp │ ├── base64.hpp │ ├── basic_function.hpp │ ├── bitfu.hpp │ ├── bitmap.cpp │ ├── bitmap.hpp │ ├── bitmap_data_allocator.cpp │ ├── bitmap_data_allocator.hpp │ ├── bitmap_from_file.cpp │ ├── bitmap_from_file.hpp │ ├── bitmap_private_data.hpp │ ├── bitset_stream.hpp │ ├── bitstream.hpp │ ├── c_interface.hpp │ ├── cache_index_mapping.hpp │ ├── cfgloader.cpp │ ├── cfgloader.hpp │ ├── cli.hpp │ ├── cli_chrono.hpp │ ├── cli_screen_info.hpp │ ├── colors.hpp │ ├── compression_transport_builder.hpp │ ├── contiguous_sub_rect_f.hpp │ ├── cpack.hpp │ ├── crypto │ ├── basic_hmac_direct.hpp │ ├── cryptcontext.hpp │ ├── ssl_lib.hpp │ ├── ssl_md4_direct.hpp │ ├── ssl_md5_direct.hpp │ ├── ssl_mod_exp_direct.cpp │ ├── ssl_mod_exp_direct.hpp │ ├── ssl_rc4_direct.hpp │ ├── ssl_sha1_direct.hpp │ ├── ssl_sha256_direct.hpp │ └── ssl_sign.hpp │ ├── d3des.cpp │ ├── d3des.hpp │ ├── diffiehellman.hpp │ ├── drawable.cpp │ ├── drawable.hpp │ ├── drawable_pointer.cpp │ ├── drawable_pointer.hpp │ ├── ellipse.hpp │ ├── error_message_ctx.hpp │ ├── file.hpp │ ├── file_permissions.hpp │ ├── fileutils.cpp │ ├── fileutils.hpp │ ├── fixed_random.hpp │ ├── function_ref.hpp │ ├── get_printable_password.hpp │ ├── hexadecimal_string_to_buffer.cpp │ ├── hexadecimal_string_to_buffer.hpp │ ├── hexdump.cpp │ ├── hexdump.hpp │ ├── id_manager.hpp │ ├── image_view.hpp │ ├── invalid_socket.hpp │ ├── ip.cpp │ ├── ip.hpp │ ├── key_qvalue_pairs.hpp │ ├── limited_array.hpp │ ├── line_equation.hpp │ ├── literals │ └── utf16.hpp │ ├── load_theme.cpp │ ├── load_theme.hpp │ ├── log.hpp │ ├── log_as_logprint.cpp │ ├── log_as_syslog.cpp │ ├── log_siem.cpp │ ├── log_siem.hpp │ ├── meminfo.hpp │ ├── monotonic_clock.hpp │ ├── monotonic_time_to_real_time.hpp │ ├── move_remaining_data.hpp │ ├── netutils.cpp │ ├── netutils.hpp │ ├── only_type.hpp │ ├── out_param.hpp │ ├── parse.hpp │ ├── parse_primary_drawing_orders.cpp │ ├── parse_primary_drawing_orders.hpp │ ├── parse_server_message.hpp │ ├── pixel_conversion.hpp │ ├── png.cpp │ ├── png.hpp │ ├── pp.hpp │ ├── primitives │ ├── primitives.cpp │ ├── primitives.hpp │ ├── primitives_internal.hpp │ └── primitives_sse2.cpp │ ├── random.hpp │ ├── real_clock.hpp │ ├── recording_progress.hpp │ ├── rect.hpp │ ├── redemption_info_version.hpp │ ├── redirection_info.hpp │ ├── ref.hpp │ ├── region.hpp │ ├── rle.cpp │ ├── rle.hpp │ ├── scaled_image24.cpp │ ├── scaled_image24.hpp │ ├── screen_resolution.hpp │ ├── select.hpp │ ├── serialize.hpp │ ├── set_exception_handler_pretty_message.cpp │ ├── set_exception_handler_pretty_message.hpp │ ├── snprintf_av.hpp │ ├── stacktrace.cpp │ ├── stacktrace.hpp │ ├── static_fmt.hpp │ ├── static_string.hpp │ ├── stream.hpp │ ├── string_c.hpp │ ├── strutils.cpp │ ├── strutils.hpp │ ├── sugar │ ├── README.md │ ├── array.hpp │ ├── array_view.hpp │ ├── bounded_array_view.hpp │ ├── bounded_bytes_view.hpp │ ├── bounded_sequence.hpp │ ├── buf_maker.hpp │ ├── buffer_view.hpp │ ├── byte_copy.hpp │ ├── byte_ptr.hpp │ ├── bytes_view.hpp │ ├── cast.hpp │ ├── chars_to_int.hpp │ ├── checked_iterator.hpp │ ├── create_enum_map.hpp │ ├── finally.hpp │ ├── flags.hpp │ ├── int_to_chars.hpp │ ├── movable_noncopyable.hpp │ ├── movable_ptr.hpp │ ├── multisz.cpp │ ├── multisz.hpp │ ├── noncopyable.hpp │ ├── not_null_ptr.hpp │ ├── numerics │ │ └── safe_conversions.hpp │ ├── overload.hpp │ ├── range.hpp │ ├── ranges.hpp │ ├── scope_exit.hpp │ ├── split.hpp │ ├── static_array_to_hexadecimal_chars.hpp │ ├── static_vector.hpp │ ├── std_stream_proto.hpp │ ├── to_sv.hpp │ ├── unique_fd.hpp │ ├── unordered_erase.hpp │ └── zstring_view.hpp │ ├── theme.hpp │ ├── timebase.hpp │ ├── timestamp_tracer.cpp │ ├── timestamp_tracer.hpp │ ├── tm_to_chars.hpp │ ├── to_timeval.hpp │ ├── traits │ ├── is_null_terminated.hpp │ └── static_array_desc.hpp │ ├── txt2d_to_rects.hpp │ ├── unicode_case_conversion.hpp │ ├── uninit_buffer.cpp │ ├── uninit_buffer.hpp │ ├── utf.cpp │ ├── utf.hpp │ ├── utf_string.hpp │ ├── verbose_flags.hpp │ ├── winpr │ └── pattern.hpp │ └── zlib.hpp ├── start.sh ├── sys ├── etc │ └── rdpproxy │ │ ├── dh3072.pem │ │ ├── ppocr.latin-cyrillic │ │ ├── datas.txt │ │ ├── dict.trie.txt │ │ ├── glyphs.txt │ │ ├── replacements.txt │ │ └── words_lines.txt │ │ ├── ppocr.latin │ │ ├── datas.txt │ │ ├── dict.trie.txt │ │ ├── glyphs.txt │ │ ├── replacements.txt │ │ └── words_lines.txt │ │ ├── rdpproxy-cert.pem │ │ ├── rdpproxy-key.pem │ │ ├── rdpproxy.crt │ │ ├── rdpproxy.csr │ │ ├── rdpproxy.ini │ │ ├── rdpproxy.key │ │ ├── rdpproxy.p12 │ │ ├── rsakeys.ini │ │ └── themes │ │ └── test_theme │ │ └── logo.png └── share │ └── rdpproxy │ ├── Philips_PM5544_640.png │ ├── dejavu_14.rbf2 │ ├── wablogo.png │ ├── wallix-icon-min.png │ └── xrdp24b-redemption.png ├── targets.jam ├── tests ├── RAIL │ └── test_client_execute.cpp ├── acl │ ├── module_manager │ │ └── test_update_application_driver.cpp │ ├── test_acl_field_mask.cpp │ ├── test_acl_serializer.cpp │ ├── test_acl_update_sesion_report.cpp │ ├── test_file_system_license_store.cpp │ ├── test_kv_list_from_strings.cpp │ ├── test_license_api.cpp │ ├── test_mod_wrapper.cpp │ └── test_session_logfile.cpp ├── capture │ ├── ocr │ │ └── locale │ │ │ └── test_latin_to_cyrillic.cpp │ ├── test_capture.cpp │ ├── test_cryptofile.cpp │ ├── test_fdx_capture.cpp │ ├── test_mwrm3.cpp │ ├── test_ocr.cpp │ ├── test_ppocr.cpp │ ├── test_rail_screen_computation.cpp │ ├── test_redis.cpp │ ├── test_regions_capture.cpp │ ├── test_session_update_buffer.cpp │ ├── test_video_capture.cpp │ ├── test_wrm_capture.cpp │ └── utils │ │ ├── test_pattern_searcher.cpp │ │ └── test_pattutils.cpp ├── client │ └── common │ │ └── test_rdp_pointer_to_rgba888.cpp ├── client_mods │ ├── test_rdp_client_large_pointer.cpp │ ├── test_rdp_client_tls_w2008.cpp │ └── test_rdp_client_wab.cpp ├── core │ ├── FSCC │ │ └── test_FileInformation.cpp │ ├── RDP │ │ ├── caches │ │ │ ├── test_bmpcache.cpp │ │ │ ├── test_bmpcachepersister.cpp │ │ │ └── test_pointercache.cpp │ │ ├── capabilities │ │ │ ├── test_activate.cpp │ │ │ ├── test_bitmapcachehostsupport.cpp │ │ │ ├── test_bitmapcodecs.cpp │ │ │ ├── test_bmpcache2.cpp │ │ │ ├── test_cap_bitmap.cpp │ │ │ ├── test_cap_bmpcache.cpp │ │ │ ├── test_cap_brushcache.cpp │ │ │ ├── test_cap_font.cpp │ │ │ ├── test_cap_glyphcache.cpp │ │ │ ├── test_cap_share.cpp │ │ │ ├── test_cap_sound.cpp │ │ │ ├── test_colcache.cpp │ │ │ ├── test_compdesk.cpp │ │ │ ├── test_control.cpp │ │ │ ├── test_drawgdiplus.cpp │ │ │ ├── test_frameacknowledge.cpp │ │ │ ├── test_general.cpp │ │ │ ├── test_input.cpp │ │ │ ├── test_largepointer.cpp │ │ │ ├── test_multifragmentupdate.cpp │ │ │ ├── test_offscreencache.cpp │ │ │ ├── test_order.cpp │ │ │ ├── test_pointer.cpp │ │ │ ├── test_rail.cpp │ │ │ ├── test_surfacecommands.cpp │ │ │ ├── test_virchan.cpp │ │ │ └── test_window.cpp │ │ ├── channels │ │ │ └── test_rdpdr.cpp │ │ ├── gcc │ │ │ └── userdata │ │ │ │ ├── test_cs_cluster.cpp │ │ │ │ ├── test_cs_core.cpp │ │ │ │ ├── test_cs_mcs_msgchannel.cpp │ │ │ │ ├── test_cs_monitor.cpp │ │ │ │ ├── test_cs_monitor_ex.cpp │ │ │ │ ├── test_cs_multitransport.cpp │ │ │ │ ├── test_cs_net.cpp │ │ │ │ ├── test_cs_security.cpp │ │ │ │ ├── test_sc_core.cpp │ │ │ │ ├── test_sc_net.cpp │ │ │ │ └── test_sc_sec1.cpp │ │ ├── mppc │ │ │ ├── test_mppc_40.cpp │ │ │ ├── test_mppc_50.cpp │ │ │ ├── test_mppc_60.cpp │ │ │ └── test_mppc_61.cpp │ │ ├── nla │ │ │ ├── kerberos │ │ │ │ ├── test_kerberos.cpp │ │ │ │ └── test_nla_client_kerberos.cpp │ │ │ ├── ntlm │ │ │ │ └── test_ntlm_message.cpp │ │ │ ├── test_credssp.cpp │ │ │ └── test_nla.cpp │ │ ├── orders │ │ │ ├── test_AlternateSecondaryWindowing.cpp │ │ │ ├── test_RDPOrdersCommon.cpp │ │ │ ├── test_RDPOrdersPrimaryDstBlt.cpp │ │ │ ├── test_RDPOrdersPrimaryEllipseCB.cpp │ │ │ ├── test_RDPOrdersPrimaryEllipseSC.cpp │ │ │ ├── test_RDPOrdersPrimaryGlyphIndex.cpp │ │ │ ├── test_RDPOrdersPrimaryLineTo.cpp │ │ │ ├── test_RDPOrdersPrimaryMemBlt.cpp │ │ │ ├── test_RDPOrdersPrimaryMultiDstBlt.cpp │ │ │ ├── test_RDPOrdersPrimaryMultiOpaqueRect.cpp │ │ │ ├── test_RDPOrdersPrimaryOpaqueRect.cpp │ │ │ ├── test_RDPOrdersPrimaryPatBlt.cpp │ │ │ ├── test_RDPOrdersPrimaryPolygonCB.cpp │ │ │ ├── test_RDPOrdersPrimaryPolygonSC.cpp │ │ │ ├── test_RDPOrdersPrimaryPolyline.cpp │ │ │ ├── test_RDPOrdersPrimaryScrBlt.cpp │ │ │ ├── test_RDPOrdersSecondaryBmpCache.cpp │ │ │ ├── test_RDPOrdersSecondaryBrushCache.cpp │ │ │ ├── test_RDPOrdersSecondaryColorCache.cpp │ │ │ └── test_RDPOrdersSecondaryGlyphCache.cpp │ │ ├── test_RDPDrawable.cpp │ │ ├── test_RDPSerializer.cpp │ │ ├── test_RefreshRectPDU.cpp │ │ ├── test_SaveSessionInfoPDU.cpp │ │ ├── test_ServerRedirection.cpp │ │ ├── test_bitmapupdate.cpp │ │ ├── test_clipboard.cpp │ │ ├── test_fastpath.cpp │ │ ├── test_gcc.cpp │ │ ├── test_lic.cpp │ │ ├── test_logon.cpp │ │ ├── test_mcs.cpp │ │ ├── test_mppc.cpp │ │ ├── test_nego.cpp │ │ ├── test_non_null_terminated_utf16_from_utf8.cpp │ │ ├── test_out_per_bstream.cpp │ │ ├── test_rdp_pointer.cpp │ │ ├── test_remote_programs.cpp │ │ ├── test_remotefx.cpp │ │ ├── test_rlgr.cpp │ │ ├── test_sec.cpp │ │ ├── test_share.cpp │ │ ├── test_slowpath.cpp │ │ ├── test_tpdu_buffer.cpp │ │ └── test_x224.cpp │ ├── RDPEA │ │ └── test_audio_output.cpp │ ├── SMB2 │ │ └── test_MessageSyntax.cpp │ ├── WMF │ │ └── test_MetaFileFormat.cpp │ ├── test_buf64k.cpp │ ├── test_channel_list.cpp │ ├── test_channel_names.cpp │ ├── test_dynamic_channels_authorizations.cpp │ ├── test_error.cpp │ ├── test_events.cpp │ ├── test_font.cpp │ ├── test_glyph_to_24_bitmap.cpp │ ├── test_log_id.cpp │ ├── test_pid_file.cpp │ └── test_session_events.cpp ├── front │ └── test_front.cpp ├── gdi │ ├── test_graphic_cmd_color.cpp │ ├── test_protected_graphics.cpp │ └── test_text.cpp ├── headlessclient │ ├── test_headless_command.cpp │ ├── test_headless_command_generator.cpp │ ├── test_headless_command_reader.cpp │ ├── test_headless_configuration.cpp │ ├── test_headless_path.cpp │ ├── test_headless_repl.cpp │ └── test_input_collector.cpp ├── includes │ ├── fixtures │ │ ├── CLT02 │ │ │ └── 0x00060002_microsoft.com_Microsoft-Corporation_A02 │ │ ├── TESTOFS.mwrm │ │ ├── ad8b.png │ │ ├── alpha-channel-transparent.png │ │ ├── alpha-channel-transparent2.png │ │ ├── alpha-channel-transparent3.png │ │ ├── alpha-channel-transparent4.png │ │ ├── alpha-channel-without-background-transparent.png │ │ ├── alpha-channel-without-background-transparent2.png │ │ ├── alpha-channel-without-background-transparent3.png │ │ ├── alpha-channel-without-background-transparent4.png │ │ ├── badocr.png │ │ ├── capture1.png │ │ ├── capture2.png │ │ ├── checkers-half-transparent.png │ │ ├── color_image.bmp │ │ ├── color_image.png │ │ ├── color_image_160x120.png │ │ ├── color_image_40x30.png │ │ ├── disable_kbd_input_in_meta.ini │ │ ├── dump_TLSw2008.hpp │ │ ├── dump_TLSw2008.txt │ │ ├── dump_TLSw2008_2.hpp │ │ ├── dump_large_pointer_disabled.hpp │ │ ├── dump_large_pointer_enabled.hpp │ │ ├── dump_w2008.hpp │ │ ├── dump_w2008_PatBlt.hpp │ │ ├── dump_wab.hpp │ │ ├── img_ref │ │ │ ├── .gitattributes │ │ │ ├── acl │ │ │ │ ├── osd_message_alert.png │ │ │ │ ├── osd_message_empty.png │ │ │ │ ├── osd_message_f12.png │ │ │ │ ├── osd_message_f12_timed.png │ │ │ │ ├── osd_message_info.png │ │ │ │ ├── osd_message_multi_line.png │ │ │ │ ├── osd_message_normal.png │ │ │ │ └── osd_message_warning.png │ │ │ ├── capture │ │ │ │ ├── bpp_to_other_bpp.png │ │ │ │ ├── sample0.png │ │ │ │ ├── video_capture │ │ │ │ │ ├── 10s.png │ │ │ │ │ ├── 1s.png │ │ │ │ │ ├── 2bis.png │ │ │ │ │ ├── 2s.png │ │ │ │ │ ├── 3s.png │ │ │ │ │ ├── 4s.png │ │ │ │ │ ├── 5s.png │ │ │ │ │ ├── 6s.png │ │ │ │ │ ├── 7s.png │ │ │ │ │ ├── 8s.png │ │ │ │ │ ├── 9s.png │ │ │ │ │ ├── cropped_10s.png │ │ │ │ │ ├── cropped_1s.png │ │ │ │ │ ├── cropped_2bis.png │ │ │ │ │ ├── cropped_2s.png │ │ │ │ │ ├── cropped_3s.png │ │ │ │ │ ├── cropped_4s.png │ │ │ │ │ ├── cropped_5s.png │ │ │ │ │ ├── cropped_6s.png │ │ │ │ │ ├── cropped_7s.png │ │ │ │ │ ├── cropped_8s.png │ │ │ │ │ └── cropped_9s.png │ │ │ │ └── wrm_to_png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ └── 5.png │ │ │ ├── client_mods │ │ │ │ └── client_wab.png │ │ │ ├── core │ │ │ │ └── RDP │ │ │ │ │ ├── bitmap_update │ │ │ │ │ └── bitmap_update_1.png │ │ │ │ │ └── rdp_drawable │ │ │ │ │ ├── rdp_drawable_1.png │ │ │ │ │ ├── rdp_drawable_2.png │ │ │ │ │ ├── rdp_drawable_3.png │ │ │ │ │ ├── rdp_drawable_4.png │ │ │ │ │ └── rdp_drawable_5.png │ │ │ ├── gdi │ │ │ │ └── text │ │ │ │ │ └── server_draw_text1.png │ │ │ ├── headless_repl │ │ │ │ └── shrink_20.png │ │ │ ├── mod │ │ │ │ ├── internal │ │ │ │ │ ├── close_mod │ │ │ │ │ │ ├── close_mod_1.png │ │ │ │ │ │ ├── close_mod_2.png │ │ │ │ │ │ ├── close_mod_3.png │ │ │ │ │ │ ├── close_mod_rail.png │ │ │ │ │ │ └── close_mod_selector_1.png │ │ │ │ │ ├── rail_module_host_mod │ │ │ │ │ │ └── rail1.png │ │ │ │ │ ├── test_card_mod │ │ │ │ │ │ └── card_mod_1.png │ │ │ │ │ └── widget │ │ │ │ │ │ ├── button │ │ │ │ │ │ ├── button_1.png │ │ │ │ │ │ ├── button_10.png │ │ │ │ │ │ ├── button_12.png │ │ │ │ │ │ ├── button_13.png │ │ │ │ │ │ ├── button_14.png │ │ │ │ │ │ ├── button_15.png │ │ │ │ │ │ ├── button_2.png │ │ │ │ │ │ ├── button_3.png │ │ │ │ │ │ ├── button_4.png │ │ │ │ │ │ ├── button_5.png │ │ │ │ │ │ ├── button_6.png │ │ │ │ │ │ ├── button_7.png │ │ │ │ │ │ ├── button_8.png │ │ │ │ │ │ └── button_9.png │ │ │ │ │ │ ├── composite │ │ │ │ │ │ ├── composite_1.png │ │ │ │ │ │ ├── composite_2.png │ │ │ │ │ │ └── composite_3.png │ │ │ │ │ │ ├── copy_paste │ │ │ │ │ │ ├── abcde.png │ │ │ │ │ │ ├── abcdefg.png │ │ │ │ │ │ ├── abcdefgjkl.png │ │ │ │ │ │ ├── empty.png │ │ │ │ │ │ ├── plop.png │ │ │ │ │ │ ├── ploplopxxxp.png │ │ │ │ │ │ ├── ploplopxxxxxxp.png │ │ │ │ │ │ └── plopplop.png │ │ │ │ │ │ ├── delegated_copy │ │ │ │ │ │ ├── delegated_copy_1.png │ │ │ │ │ │ ├── delegated_copy_2.png │ │ │ │ │ │ └── delegated_copy_3.png │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog_1.png │ │ │ │ │ │ ├── dialog_10.png │ │ │ │ │ │ ├── dialog_11.png │ │ │ │ │ │ ├── dialog_13.png │ │ │ │ │ │ ├── dialog_2.png │ │ │ │ │ │ ├── dialog_3.png │ │ │ │ │ │ ├── dialog_4.png │ │ │ │ │ │ ├── dialog_5.png │ │ │ │ │ │ ├── dialog_6.png │ │ │ │ │ │ ├── dialog_7.png │ │ │ │ │ │ ├── dialog_8.png │ │ │ │ │ │ ├── dialog_9.png │ │ │ │ │ │ ├── dialog_challenge_1.png │ │ │ │ │ │ ├── dialog_link_1.png │ │ │ │ │ │ ├── dialog_link_2.png │ │ │ │ │ │ ├── dialog_link_3.png │ │ │ │ │ │ ├── dialog_link_4.png │ │ │ │ │ │ └── dialog_link_5.png │ │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── edit_1.png │ │ │ │ │ │ ├── edit_2.png │ │ │ │ │ │ ├── edit_abcdtrbi.png │ │ │ │ │ │ ├── edit_empty.png │ │ │ │ │ │ ├── edit_trb.png │ │ │ │ │ │ ├── kbd__abcdtrbt.ab_ctrl_right.png │ │ │ │ │ │ ├── kbd__abcdtrbt.ab_delete.png │ │ │ │ │ │ ├── kbd__bcdtrbt.ab_ctrl_delete.png │ │ │ │ │ │ ├── kbd__trbt_insert_a.png │ │ │ │ │ │ ├── kbd_a_trbt_insert_b.png │ │ │ │ │ │ ├── kbd_ab_trbt_insert_c.png │ │ │ │ │ │ ├── kbd_abc_trbt_insert_d.png │ │ │ │ │ │ ├── kbd_abcd_trbt_end.png │ │ │ │ │ │ ├── kbd_abcdtrbt._ab_ctrl_left.png │ │ │ │ │ │ ├── kbd_abcdtrbt._ab_ctrl_right.png │ │ │ │ │ │ ├── kbd_abcdtrbt._insert_a.png │ │ │ │ │ │ ├── kbd_abcdtrbt.a_insert_b.png │ │ │ │ │ │ ├── kbd_abcdtrbt.ab_ctrl_left.png │ │ │ │ │ │ ├── kbd_abcdtrbt.ab_home.png │ │ │ │ │ │ ├── kbd_abcdtrbt_insert_space.png │ │ │ │ │ │ ├── kbd_t_brt_left.png │ │ │ │ │ │ ├── kbd_tr_bt_left.png │ │ │ │ │ │ ├── kbd_trb_at_delete.png │ │ │ │ │ │ ├── kbd_trb_insert_a.png │ │ │ │ │ │ ├── kbd_trb_t_end.png │ │ │ │ │ │ ├── kbd_trb_t_left.png │ │ │ │ │ │ ├── kbd_trba_insert_t.png │ │ │ │ │ │ ├── kbd_trba_t_left.png │ │ │ │ │ │ ├── kbd_trbat_insert_r.png │ │ │ │ │ │ ├── kbd_trbat_left.png │ │ │ │ │ │ ├── kbd_trbat_r_right.png │ │ │ │ │ │ ├── kbd_trbatr_backspace.png │ │ │ │ │ │ ├── kbd_trbatr_left.png │ │ │ │ │ │ ├── kbd_trbt_end.png │ │ │ │ │ │ ├── kbd_trbt_home.png │ │ │ │ │ │ ├── mouse_abcdtrbi_10.png │ │ │ │ │ │ ├── mouse_abcdtrbi_2.png │ │ │ │ │ │ ├── mouse_abcdtrbi_25.png │ │ │ │ │ │ ├── mouse_abcdtrbi_3.png │ │ │ │ │ │ ├── mouse_abcdtrbi_47.png │ │ │ │ │ │ ├── mouse_abcdtrbi_48.png │ │ │ │ │ │ ├── set_text_init.png │ │ │ │ │ │ ├── set_text_keep_pos.png │ │ │ │ │ │ └── set_text_update_pos.png │ │ │ │ │ │ ├── edit_valid │ │ │ │ │ │ ├── edit_valid_1.png │ │ │ │ │ │ ├── edit_valid_2.png │ │ │ │ │ │ ├── edit_valid_3.png │ │ │ │ │ │ ├── edit_valid_4.png │ │ │ │ │ │ ├── edit_valid_5.png │ │ │ │ │ │ ├── edit_valid_6.png │ │ │ │ │ │ ├── edit_valid_password_1.png │ │ │ │ │ │ ├── edit_valid_password_2.png │ │ │ │ │ │ ├── edit_valid_password_3.png │ │ │ │ │ │ ├── edit_valid_password_4.png │ │ │ │ │ │ ├── edit_valid_password_5.png │ │ │ │ │ │ ├── edit_valid_password_6.png │ │ │ │ │ │ ├── edit_valid_password_7.png │ │ │ │ │ │ ├── edit_valid_password_8.png │ │ │ │ │ │ ├── edit_valid_password_9.png │ │ │ │ │ │ ├── edit_valid_placeholder_1.png │ │ │ │ │ │ ├── edit_valid_placeholder_2.png │ │ │ │ │ │ ├── edit_valid_placeholder_3.png │ │ │ │ │ │ ├── edit_valid_placeholder_4.png │ │ │ │ │ │ ├── edit_valid_placeholder_5.png │ │ │ │ │ │ ├── edit_valid_placeholder_6.png │ │ │ │ │ │ ├── edit_valid_text_1.png │ │ │ │ │ │ └── edit_valid_text_2.png │ │ │ │ │ │ ├── image │ │ │ │ │ │ ├── image_1.png │ │ │ │ │ │ ├── image_2.png │ │ │ │ │ │ ├── image_3.png │ │ │ │ │ │ ├── image_4.png │ │ │ │ │ │ ├── image_5.png │ │ │ │ │ │ ├── image_6.png │ │ │ │ │ │ ├── image_clip_1.png │ │ │ │ │ │ ├── image_clip_2.png │ │ │ │ │ │ ├── image_transparent_1.png │ │ │ │ │ │ ├── image_transparent_2.png │ │ │ │ │ │ ├── image_transparent_alpha_channel_1.png │ │ │ │ │ │ ├── image_transparent_alpha_channel_2.png │ │ │ │ │ │ ├── image_transparent_alpha_channel_3.png │ │ │ │ │ │ ├── image_transparent_alpha_channel_4.png │ │ │ │ │ │ ├── image_transparent_half_transparent_1.png │ │ │ │ │ │ └── image_transparent_half_transparent_2.png │ │ │ │ │ │ ├── interactive_target │ │ │ │ │ │ ├── interactive_target_1.png │ │ │ │ │ │ ├── interactive_target_2.png │ │ │ │ │ │ ├── interactive_target_3.png │ │ │ │ │ │ ├── interactive_target_4.png │ │ │ │ │ │ └── interactive_target_5.png │ │ │ │ │ │ ├── label │ │ │ │ │ │ ├── label_1.png │ │ │ │ │ │ ├── label_2.png │ │ │ │ │ │ └── label_3.png │ │ │ │ │ │ ├── login │ │ │ │ │ │ ├── login_1.png │ │ │ │ │ │ ├── login_2.png │ │ │ │ │ │ ├── login_3.png │ │ │ │ │ │ ├── login_4.png │ │ │ │ │ │ ├── login_5.png │ │ │ │ │ │ ├── login_6.png │ │ │ │ │ │ ├── login_7.png │ │ │ │ │ │ ├── login_8.png │ │ │ │ │ │ ├── login_help_1.png │ │ │ │ │ │ └── login_help_2.png │ │ │ │ │ │ ├── multiline │ │ │ │ │ │ └── multi_line.png │ │ │ │ │ │ ├── number_edit │ │ │ │ │ │ ├── number_edit_1.png │ │ │ │ │ │ └── number_edit_3.png │ │ │ │ │ │ ├── password │ │ │ │ │ │ ├── password_1.png │ │ │ │ │ │ ├── password_ctrl_left.png │ │ │ │ │ │ ├── password_empty.png │ │ │ │ │ │ └── password_left.png │ │ │ │ │ │ ├── protected_graphics │ │ │ │ │ │ ├── protected_graphics_1.png │ │ │ │ │ │ ├── protected_graphics_2.png │ │ │ │ │ │ ├── protected_graphics_3.png │ │ │ │ │ │ └── protected_graphics_4.png │ │ │ │ │ │ ├── rect │ │ │ │ │ │ └── rect.png │ │ │ │ │ │ ├── screen │ │ │ │ │ │ ├── screen_1.png │ │ │ │ │ │ ├── screen_10.png │ │ │ │ │ │ ├── screen_12.png │ │ │ │ │ │ ├── screen_13.png │ │ │ │ │ │ ├── screen_2.png │ │ │ │ │ │ ├── screen_3.png │ │ │ │ │ │ ├── screen_4.png │ │ │ │ │ │ └── screen_7.png │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── hscroll_1.png │ │ │ │ │ │ ├── hscroll_2.png │ │ │ │ │ │ ├── hscroll_3.png │ │ │ │ │ │ ├── hscroll_4.png │ │ │ │ │ │ ├── hscroll_5.png │ │ │ │ │ │ ├── hscroll_6.png │ │ │ │ │ │ ├── hscroll_7.png │ │ │ │ │ │ ├── hscroll_8.png │ │ │ │ │ │ ├── hscroll_9.png │ │ │ │ │ │ ├── vscroll_1.png │ │ │ │ │ │ ├── vscroll_2.png │ │ │ │ │ │ ├── vscroll_3.png │ │ │ │ │ │ ├── vscroll_4.png │ │ │ │ │ │ ├── vscroll_5.png │ │ │ │ │ │ ├── vscroll_6.png │ │ │ │ │ │ ├── vscroll_7.png │ │ │ │ │ │ ├── vscroll_8.png │ │ │ │ │ │ ├── vscroll_9.png │ │ │ │ │ │ ├── vscroll_rail_1.png │ │ │ │ │ │ └── vscroll_rail_2.png │ │ │ │ │ │ ├── selector │ │ │ │ │ │ ├── selector_0.png │ │ │ │ │ │ ├── selector_1.png │ │ │ │ │ │ ├── selector_2.png │ │ │ │ │ │ ├── selector_3.png │ │ │ │ │ │ ├── selector_4.png │ │ │ │ │ │ ├── selector_5.png │ │ │ │ │ │ ├── selector_6.png │ │ │ │ │ │ ├── selector_7.png │ │ │ │ │ │ ├── selector_filter_0.png │ │ │ │ │ │ ├── selector_filter_1.png │ │ │ │ │ │ ├── selector_filter_2.png │ │ │ │ │ │ ├── selector_filter_3.png │ │ │ │ │ │ ├── selector_filter_4.png │ │ │ │ │ │ ├── selector_filter_5.png │ │ │ │ │ │ ├── selector_filter_6.png │ │ │ │ │ │ ├── selector_filter_7.png │ │ │ │ │ │ ├── selector_filter_8.png │ │ │ │ │ │ ├── selector_filter_9.png │ │ │ │ │ │ ├── selector_nodata.png │ │ │ │ │ │ ├── selector_resize_1.png │ │ │ │ │ │ └── selector_resize_2.png │ │ │ │ │ │ ├── vertical_scroll_text │ │ │ │ │ │ ├── long1.png │ │ │ │ │ │ ├── long2.png │ │ │ │ │ │ ├── long3.png │ │ │ │ │ │ ├── long4.png │ │ │ │ │ │ ├── long5.png │ │ │ │ │ │ ├── long5_2.png │ │ │ │ │ │ ├── long6.png │ │ │ │ │ │ ├── long6_2.png │ │ │ │ │ │ ├── long7.png │ │ │ │ │ │ ├── long_opti.png │ │ │ │ │ │ └── short1.png │ │ │ │ │ │ ├── wab_close │ │ │ │ │ │ ├── wab_close_1.png │ │ │ │ │ │ ├── wab_close_2.png │ │ │ │ │ │ ├── wab_close_3.png │ │ │ │ │ │ ├── wab_close_4.png │ │ │ │ │ │ ├── wab_close_5.png │ │ │ │ │ │ ├── wab_close_7.png │ │ │ │ │ │ └── wab_close_8.png │ │ │ │ │ │ └── wait │ │ │ │ │ │ ├── wait_1.png │ │ │ │ │ │ └── wait_2.png │ │ │ │ ├── rdp │ │ │ │ │ └── channels │ │ │ │ │ │ └── rail_session_manager │ │ │ │ │ │ └── disconnect_button.png │ │ │ │ └── vnc │ │ │ │ │ └── encoder │ │ │ │ │ └── zrle │ │ │ │ │ ├── zrle.png │ │ │ │ │ ├── zrle_packed_palette_5.png │ │ │ │ │ ├── zrle_palette_13.png │ │ │ │ │ ├── zrle_palette_2.png │ │ │ │ │ ├── zrle_palette_rle.png │ │ │ │ │ ├── zrle_plain_rle.png │ │ │ │ │ ├── zrle_raw.png │ │ │ │ │ └── zrle_solid.png │ │ │ ├── replay_mod.png │ │ │ └── utils │ │ │ │ ├── bitmap │ │ │ │ ├── bitmap_conv.png │ │ │ │ └── bogus_RLE_decompression_1.png │ │ │ │ ├── drawable │ │ │ │ ├── dest_blt.png │ │ │ │ ├── ellipse.png │ │ │ │ ├── line_to.png │ │ │ │ ├── mem_blt_1.png │ │ │ │ ├── mem_blt_2.png │ │ │ │ ├── mem_blt_3.png │ │ │ │ ├── pat_blt.png │ │ │ │ ├── scr_blt_1.png │ │ │ │ ├── scr_blt_10.png │ │ │ │ ├── scr_blt_2.png │ │ │ │ ├── scr_blt_3.png │ │ │ │ ├── scr_blt_4.png │ │ │ │ ├── scr_blt_5.png │ │ │ │ ├── scr_blt_6.png │ │ │ │ ├── scr_blt_7.png │ │ │ │ ├── scr_blt_8.png │ │ │ │ ├── scr_blt_9.png │ │ │ │ ├── timestamp_0.png │ │ │ │ ├── timestamp_1.png │ │ │ │ └── timestamp_2.png │ │ │ │ └── drawable_pointer │ │ │ │ ├── add_mouse_-8x-8.png │ │ │ │ ├── add_mouse_100x100.png │ │ │ │ ├── add_mouse_2_101x101.png │ │ │ │ ├── add_mouse_638x470.png │ │ │ │ ├── add_mouse_clear.png │ │ │ │ ├── cursor_32_bpp.png │ │ │ │ ├── edit_1_bpp.png │ │ │ │ ├── no_cursor.png │ │ │ │ └── normal_24_bpp.png │ │ ├── kpd_input.mwrm │ │ ├── kpd_input.wrm │ │ ├── logo-redemption-half-transparent.png │ │ ├── logo-redemption-transparent.png │ │ ├── logo-redemption-transparent2.png │ │ ├── logo-redemption.bmp │ │ ├── logo-redemption.png │ │ ├── m-21288-2.png │ │ ├── moved_sample.mwrm │ │ ├── multimon_remoteapp │ │ │ └── recorder │ │ │ │ ├── app_4720x1440-000000.wrm │ │ │ │ ├── secondary_screen_to_left-000000.wrm │ │ │ │ └── secondary_screen_to_left.mwrm │ │ ├── persistent_disk_bitmap_cache.hpp │ │ ├── randomdata.hpp │ │ ├── rdp@192.168.10.254,qaadministrateur@win2k3dc_rdp,20121128-114532,wab2-3-1-0.yourdomain,8575-001616-000000.png │ │ ├── rdpproxy.ini │ │ ├── red_box.png │ │ ├── red_box_20x20.png │ │ ├── replay.wrm │ │ ├── resizing-capture-0-000000.wrm │ │ ├── resizing-capture-0-000001.wrm │ │ ├── resizing-capture-0-000002.wrm │ │ ├── resizing-capture-0-000003.wrm │ │ ├── resizing-capture-0.mwrm │ │ ├── resizing-capture-1-000000.wrm │ │ ├── resizing-capture-1-000001.wrm │ │ ├── resizing-capture-1-000002.wrm │ │ ├── resizing-capture-1-000003.wrm │ │ ├── resizing-capture-1.mwrm │ │ ├── rfc959.txt │ │ ├── sample.bmp │ │ ├── sample.mwrm │ │ ├── sample.txt │ │ ├── sample0.wrm │ │ ├── sample1.wrm │ │ ├── sample2.wrm │ │ ├── sample_v2.mwrm │ │ ├── sample_v2_checksum.mwrm │ │ ├── scaled_image24 │ │ │ └── win2008capture10_50_percent.png │ │ ├── smart_video_cropping_v1.ini │ │ ├── smart_video_cropping_v2.ini │ │ ├── test_bitmapcache.hpp │ │ ├── test_cliprdr_channel_xfreerdp_down_denied.hpp │ │ ├── test_cliprdr_channel_xfreerdp_full_authorisation.hpp │ │ ├── test_cliprdr_channel_xfreerdp_full_denied.hpp │ │ ├── test_cliprdr_channel_xfreerdp_up_denied.hpp │ │ ├── test_infile.txt │ │ ├── test_license_api_license.hpp │ │ ├── test_license_api_wel_1.hpp │ │ ├── test_license_api_wel_2.hpp │ │ ├── test_license_api_woel_1.hpp │ │ ├── test_license_api_woel_2.hpp │ │ ├── test_mppc_2.hpp │ │ ├── test_mppc_3.hpp │ │ ├── test_mppc_4.hpp │ │ ├── test_mppc_5.hpp │ │ ├── test_mppc_6.hpp │ │ ├── test_mppc_7.hpp │ │ ├── test_mppc_TestMPPC.hpp │ │ ├── test_mppc_TestMPPC_enc.hpp │ │ ├── test_rdpdr_channel.hpp │ │ ├── test_rdpdr_channel_capability_negotiation.hpp │ │ ├── test_rdpdr_channel_device_remove.hpp │ │ ├── test_rdpdr_channel_fragmented_header.hpp │ │ ├── test_rdpdr_channel_no_drive.hpp │ │ ├── test_rdpdr_channel_no_drive_no_print.hpp │ │ ├── test_rdpdr_channel_no_print.hpp │ │ ├── test_rdpdr_drive_read_task.hpp │ │ ├── test_rdpdr_send_drive_io_response_task.hpp │ │ ├── trace_front_client.hpp │ │ ├── trace_front_client_patblt.hpp │ │ ├── trace_mstsc_client.hpp │ │ ├── trace_mstsc_client_rdp50bulk.hpp │ │ ├── trace_rdesktop_client.hpp │ │ ├── verifier │ │ │ ├── hash │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@local@win2008,20161026-131957,wab-4-2-4.yourdomain,1914.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@local@win2008,20161026-132156,wab-4-2-4.yourdomain,9904.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161025-213153,wab-4-2-4.yourdomain,3243.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161026-132131,wab-4-2-4.yourdomain,9904.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161201-163203,wab-4-2-4.yourdomain,1046.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-192304,wab-4-2-4.yourdomain,5560.mwrm │ │ │ │ ├── meta_message-000000.wrm │ │ │ │ ├── meta_message-000001.wrm │ │ │ │ ├── meta_message.mwrm │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-181658,wab-5-0-0.yourdomain,7681.mwrm │ │ │ │ └── toto@10.10.43.13,Administrateur@QA@cible,20160218-183009,wab-5-0-0.yourdomain,7335.mwrm │ │ │ └── recorded │ │ │ │ ├── bad │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-181658,wab-5-0-0.yourdomain,7681-000000.wrm │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-181658,wab-5-0-0.yourdomain,7681.mwrm │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-183009,wab-5-0-0.yourdomain,7335-000000.wrm │ │ │ │ └── toto@10.10.43.13,Administrateur@QA@cible,20160218-183009,wab-5-0-0.yourdomain,7335.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@local@win2008,20161026-131957,wab-4-2-4.yourdomain,1914-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@local@win2008,20161026-131957,wab-4-2-4.yourdomain,1914.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@local@win2008,20161026-132156,wab-4-2-4.yourdomain,9904-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@local@win2008,20161026-132156,wab-4-2-4.yourdomain,9904.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@win2008,20161025-164758,wab-4-2-4.yourdomain,7192-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@win2008,20161025-164758,wab-4-2-4.yourdomain,7192.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@win2008,20161025-191826,wab-4-2-4.yourdomain,9485-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyadmin@win2008,20161025-191826,wab-4-2-4.yourdomain,9485.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161025-213153,wab-4-2-4.yourdomain,3243-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161025-213153,wab-4-2-4.yourdomain,3243.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161026-132131,wab-4-2-4.yourdomain,9904-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161026-132131,wab-4-2-4.yourdomain,9904.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161201-163203,wab-4-2-4.yourdomain,1046-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@local@win2008,20161201-163203,wab-4-2-4.yourdomain,1046.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-181703,wab-4-2-4.yourdomain,6759-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-181703,wab-4-2-4.yourdomain,6759-000001.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-181703,wab-4-2-4.yourdomain,6759.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-184533,wab-4-2-4.yourdomain,1359-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-184533,wab-4-2-4.yourdomain,1359.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-191724,wab-4-2-4.yourdomain,6734-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-191724,wab-4-2-4.yourdomain,6734.mwrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-192304,wab-4-2-4.yourdomain,5560-000000.wrm │ │ │ │ ├── cgrosjean@10.10.43.13,proxyuser@win2008,20161025-192304,wab-4-2-4.yourdomain,5560.mwrm │ │ │ │ ├── meta_message-000000.wrm │ │ │ │ ├── meta_message-000001.wrm │ │ │ │ ├── meta_message.mwrm │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-181658,wab-5-0-0.yourdomain,7681-000000.wrm │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-181658,wab-5-0-0.yourdomain,7681.mwrm │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-183009,wab-5-0-0.yourdomain,7335-000000.wrm │ │ │ │ ├── toto@10.10.43.13,Administrateur@QA@cible,20160218-183009,wab-5-0-0.yourdomain,7335.mwrm │ │ │ │ ├── v1_nochecksum_nocrypt.mwrm │ │ │ │ └── v2_nochecksum_nocrypt.mwrm │ │ ├── w2012s_Gestionnaire_de_serveur.png │ │ ├── w2012s_Gestionnaire_des_taches.png │ │ ├── w2012s_Panneau_de_configuration.png │ │ ├── w7mediacentercapture.png │ │ ├── wablogoblue-transparent.png │ │ ├── wablogoblue_198x67.png │ │ ├── wablogoblue_220x76.png │ │ ├── win2002capture1.png │ │ ├── win2008R2_server_manager.png │ │ ├── win2008capture.png │ │ ├── win2008capture10.png │ │ ├── win2008capture2.png │ │ ├── win2008capture3.png │ │ ├── win2008capture4.png │ │ ├── win2008capture5.png │ │ ├── win2008capture6.png │ │ ├── win2008capture9.png │ │ ├── win2012_vnc_t9209.png │ │ ├── win2012capture1.png │ │ ├── win2012capture2.png │ │ ├── win2012capture3.png │ │ ├── win_unknown_russian.png │ │ ├── win_unknown_russian2.png │ │ ├── xrdp24b-transparent.png │ │ ├── xrdp24b.bmp │ │ ├── xrdp24b.jpg │ │ └── xrdp24b.png │ └── test_only │ │ ├── app_path_test.cpp │ │ ├── core │ │ ├── font.cpp │ │ └── font.hpp │ │ ├── force_paris_timezone.hpp │ │ ├── front │ │ ├── fake_front.cpp │ │ ├── fake_front.hpp │ │ ├── front_wrapper.cpp │ │ └── front_wrapper.hpp │ │ ├── gdi │ │ ├── test_graphic.cpp │ │ └── test_graphic.hpp │ │ ├── lcg_random.hpp │ │ ├── log_as_logtest.cpp │ │ ├── log_buffered.hpp │ │ ├── mod │ │ ├── accumulate_input_mod.cpp │ │ ├── accumulate_input_mod.hpp │ │ └── internal │ │ │ └── widget │ │ │ ├── notify_trace.hpp │ │ │ └── null_tooltip_shower.hpp │ │ ├── ostream_buffered.hpp │ │ ├── replay_random.hpp │ │ ├── session_log_test.cpp │ │ ├── session_log_test.hpp │ │ ├── test_framework │ │ ├── README.md │ │ ├── check_img.cpp │ │ ├── check_img.hpp │ │ ├── compare_collection.hpp │ │ ├── dispatch_comparison.hpp │ │ ├── file.hpp │ │ ├── impl │ │ │ ├── redemption_unit_tests_impl.hpp │ │ │ ├── register_exception.cpp │ │ │ ├── test_framework.cpp │ │ │ └── test_paths.hpp │ │ ├── redemption_unit_tests.cpp │ │ ├── redemption_unit_tests.hpp │ │ ├── sig.cpp │ │ ├── sig.hpp │ │ ├── working_directory.cpp │ │ └── working_directory.hpp │ │ └── transport │ │ ├── test_transport.cpp │ │ └── test_transport.hpp ├── keyboard │ ├── test_keymap.cpp │ └── test_keymapsym.cpp ├── lib │ ├── test_credis.cpp │ ├── test_do_recorder.cpp │ └── test_scytale.cpp ├── mod │ ├── internal │ │ ├── test_close_mod.cpp │ │ ├── test_copy_paste.cpp │ │ ├── test_dialog_mod.cpp │ │ ├── test_interactive_target_mod.cpp │ │ ├── test_login_mod.cpp │ │ ├── test_rail_module_host_mod.cpp │ │ ├── test_replay_mod.cpp │ │ ├── test_test_card_mod.cpp │ │ └── widget │ │ │ ├── test_button.cpp │ │ │ ├── test_composite.cpp │ │ │ ├── test_delegated_copy.cpp │ │ │ ├── test_dialog.cpp │ │ │ ├── test_edit.cpp │ │ │ ├── test_edit_valid.cpp │ │ │ ├── test_image.cpp │ │ │ ├── test_interactive_target.cpp │ │ │ ├── test_label.cpp │ │ │ ├── test_login.cpp │ │ │ ├── test_multiline.cpp │ │ │ ├── test_number_edit.cpp │ │ │ ├── test_password.cpp │ │ │ ├── test_screen.cpp │ │ │ ├── test_scroll.cpp │ │ │ ├── test_selector.cpp │ │ │ ├── test_vertical_scroll_text.cpp │ │ │ ├── test_wab_close.cpp │ │ │ ├── test_wait.cpp │ │ │ └── test_widget_rect.cpp │ ├── rdp │ │ ├── channels │ │ │ ├── test_channel.hpp │ │ │ ├── test_cliprdr_channel.cpp │ │ │ ├── test_cliprdr_channel_send_and_receive.cpp │ │ │ ├── test_rail_session_manager.cpp │ │ │ ├── test_rail_window_id_manager.cpp │ │ │ ├── test_rdpdr_asynchronous_task.cpp │ │ │ ├── test_rdpdr_channel.cpp │ │ │ ├── test_sespro_channel_params.cpp │ │ │ └── test_virtual_channel_filter.cpp │ │ ├── test_rdp.cpp │ │ └── test_rdp_negociation_data.cpp │ ├── test_file_validator_service.cpp │ └── vnc │ │ ├── encoder │ │ ├── test_hextile.cpp │ │ ├── test_pointer_loader_vnc.cpp │ │ ├── test_zrle.cpp │ │ └── vnc_zrle_slice1_0_34.hpp │ │ ├── test_newline_convert.cpp │ │ ├── test_vnc.cpp │ │ └── vnc_zrle_slice1_0_34.hpp ├── proxy_recorder │ ├── test_extract_user_domain.cpp │ └── test_proxy_recorder.cpp ├── server │ ├── test_mstsc_client.cpp │ ├── test_mstsc_client_rdp50bulk.cpp │ └── test_rdesktop_client.cpp ├── system │ ├── common │ │ ├── test_ssl_md4.hpp │ │ ├── test_ssl_md5.hpp │ │ ├── test_ssl_mod_exp.hpp │ │ ├── test_ssl_rc4.hpp │ │ ├── test_ssl_sha1.hpp │ │ └── test_ssl_sha256.hpp │ └── linux │ │ └── system │ │ ├── test_ssl_md4.cpp │ │ ├── test_ssl_md5.cpp │ │ ├── test_ssl_mod_exp.cpp │ │ ├── test_ssl_rc4.cpp │ │ ├── test_ssl_sha1.cpp │ │ └── test_ssl_sha256.cpp ├── translation │ ├── test_gettext.cpp │ └── test_translation.cpp ├── transport │ ├── test_crypto_transport.cpp │ ├── test_file_transport.cpp │ ├── test_gzip_compression_transport.cpp │ ├── test_in_multi_crypto_transport.cpp │ ├── test_mwrm_file_data.cpp │ ├── test_mwrm_reader.cpp │ ├── test_out_filename_sequence_transport.cpp │ ├── test_out_meta_sequence_transport.cpp │ ├── test_recorder_transport.cpp │ ├── test_snappy_compression_transport.cpp │ ├── test_socket_transport.cpp │ ├── test_test_transport.cpp │ └── ws │ │ └── test_ws_protocol.cpp └── utils │ ├── crypto │ ├── test_ssl_lib.cpp │ ├── test_ssl_md4_direct.cpp │ ├── test_ssl_md5_direct.cpp │ ├── test_ssl_mod_exp_direct.cpp │ ├── test_ssl_rc4_direct.cpp │ ├── test_ssl_sha1_direct.cpp │ ├── test_ssl_sha256_direct.cpp │ └── test_ssl_sign.cpp │ ├── literals │ └── test_utf16.cpp │ ├── sugar │ ├── numerics │ │ └── test_safe_conversions.cpp │ ├── test_array_view.cpp │ ├── test_bounded_array_view.cpp │ ├── test_bounded_bytes_view.cpp │ ├── test_buf_maker.cpp │ ├── test_buffer_view.cpp │ ├── test_bytes_view.cpp │ ├── test_cast.cpp │ ├── test_chars_to_int.cpp │ ├── test_checked_iterator.cpp │ ├── test_finally.cpp │ ├── test_int_to_chars.cpp │ ├── test_multisz.cpp │ ├── test_range.cpp │ ├── test_split.cpp │ ├── test_static_array_to_hexadecimal_chars.cpp │ ├── test_static_vector.cpp │ ├── test_unique_fd.cpp │ └── unordered_erase.cpp │ ├── test_ascii.cpp │ ├── test_base64.cpp │ ├── test_bitfu.cpp │ ├── test_bitmap.cpp │ ├── test_bitmap_from_file.cpp │ ├── test_bitset_stream.cpp │ ├── test_bitstream.cpp │ ├── test_cache_index_mapping.cpp │ ├── test_cfgloader.cpp │ ├── test_channels_authorizations.cpp │ ├── test_cli.cpp │ ├── test_colors.cpp │ ├── test_compression_transport_builder.cpp │ ├── test_contiguous_sub_rect_f.cpp │ ├── test_d3des.cpp │ ├── test_diffiehellman.cpp │ ├── test_drawable.cpp │ ├── test_drawable_pointer.cpp │ ├── test_ellipse.cpp │ ├── test_error_message_ctx.cpp │ ├── test_file_permissions.cpp │ ├── test_fileutils.cpp │ ├── test_get_printable_password.cpp │ ├── test_hexadecimal_string_to_buffer.cpp │ ├── test_id_manager.cpp │ ├── test_ip.cpp │ ├── test_key_qvalue_pairs.cpp │ ├── test_line_equation.cpp │ ├── test_load_theme.cpp │ ├── test_log.cpp │ ├── test_log_siem.cpp │ ├── test_meminfo.cpp │ ├── test_move_remaining_data.cpp │ ├── test_netutils.cpp │ ├── test_parse.cpp │ ├── test_parse_primary_drawing_orders.cpp │ ├── test_parse_server_message.cpp │ ├── test_png.cpp │ ├── test_random.cpp │ ├── test_recording_progress.cpp │ ├── test_rect.cpp │ ├── test_redirection_info.cpp │ ├── test_region.cpp │ ├── test_rle.cpp │ ├── test_scaled_image24.cpp │ ├── test_snprintf_av.cpp │ ├── test_static_fmt.cpp │ ├── test_static_string.cpp │ ├── test_stream.cpp │ ├── test_string_c.cpp │ ├── test_strutils.cpp │ ├── test_to_timeval.cpp │ ├── test_txt2d_to_rects.cpp │ ├── test_utf.cpp │ ├── test_zlib.cpp │ └── winpr │ └── test_pattern.cpp ├── tools ├── bjam │ ├── README.md │ ├── bjam-patch │ │ ├── clang-linux.jam │ │ └── clang-linux.jam.diff │ ├── bjam_completion.bash │ ├── bjam_completion.zsh │ ├── bjam_filter.awk │ ├── bjam_help.sh │ ├── gen_targets.py │ ├── unit_test_color.sh │ └── user-config.jam ├── c++-analyzer │ ├── README.md │ ├── bt │ ├── clang-tidy │ ├── cppcheck │ ├── cppcheck-filtered │ ├── include_graph │ ├── include_tree │ ├── infer │ ├── lua-checker │ │ ├── checkers │ │ │ ├── acl_report.lua │ │ │ ├── config.lua │ │ │ ├── error.lua │ │ │ ├── printf.lua │ │ │ ├── trkeys.lua │ │ │ └── vcfg.lua │ │ ├── lua-checker.lua │ │ └── utils.lua │ ├── output │ │ └── valgrind_files_error │ ├── redemption-analyzer.sh │ ├── scan-build │ ├── scan-build-bjam │ ├── suppr-leak-asan.txt │ ├── tmalloc │ ├── todo_extractor │ ├── tscancode │ └── valgrind ├── capture_to_source.pl ├── certgen.sh ├── conf_migration_tool │ ├── README.rst │ ├── rdp_conf_migrate.py │ ├── test.sh │ └── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ ├── REDEMPTION_VERSION │ │ ├── REDEMPTION_VERSION_KO │ │ └── rdpproxy.ini │ │ ├── test_config_file.py │ │ └── test_executable_version.py ├── cpp2ctypes │ ├── README.md │ ├── autotest │ │ ├── enums.h │ │ ├── enums.py │ │ ├── funcs.h │ │ ├── funcs.py │ │ ├── pyclass.h │ │ └── pyclass.py │ ├── cpp2ctypes.lua │ └── test.sh ├── font_parser.py ├── freedrdp_capture_to_source.pl ├── gcovr.sh ├── gen_keylayouts │ ├── README.md │ ├── gen_cpp.py │ └── gen_cpp.sh ├── gitlab │ ├── gitlab-analyze.sh │ └── gitlab-check-autogen.sh ├── i18n │ ├── gen_catalog.sh │ ├── po │ │ ├── en │ │ │ └── redemption.po │ │ ├── fr │ │ │ └── redemption.po │ │ └── redemption.pot │ └── xgettext.py ├── icap_validator │ └── fake_validator.py ├── jenkins.sh ├── log_siem │ ├── extractor.py │ ├── sample.txt │ ├── siem_filters_rdp_proxy.py │ └── update.sh ├── passthrough │ ├── README.md │ ├── logger.py │ └── passthrough.py ├── post-build-jenkins ├── python-analyzer │ ├── coverage.sh │ └── ruff.sh ├── rdpcert ├── rsyslog.d │ └── 100-rdpproxy.conf ├── servercertgen.sh ├── sesman │ ├── README.rst │ ├── WABRDPAuthentifier │ ├── __init__.py │ ├── benchmark │ │ ├── empty_logger.py │ │ └── is_device_in_subnet_bm.py │ ├── logger.py │ ├── mypy.sh │ ├── sesman.spec │ ├── sesmanworker │ │ ├── __init__.py │ │ ├── addrutils.py │ │ ├── challenge.py │ │ ├── checkout.py │ │ ├── engine.py │ │ ├── engine_import.py │ │ ├── logtime.py │ │ ├── parsers.py │ │ ├── proxy_log.py │ │ ├── sesman.py │ │ ├── sesmanbacktoselector.py │ │ ├── sesmanconf.py │ │ ├── sesmanconnpolicyspec.py │ │ ├── targetaccuratefilter.py │ │ ├── transaction.py │ │ ├── tunneling_process.py │ │ └── wallixauth.py │ └── tests │ │ ├── __init__.py │ │ ├── test_addrutils.py │ │ ├── test_parsers.py │ │ ├── test_proxy_log.py │ │ ├── test_sesman_methods.py │ │ ├── test_sesmanconf.py │ │ └── test_targetaccuratefilter.py ├── source_deps_cp.sh ├── syslog │ ├── README.md │ ├── rdpproxy_color.awk │ ├── rdpproxy_color.trace.log │ └── split_log.py ├── tmalloc │ ├── build.sh │ └── tmalloc.cpp ├── transparentrule.sh ├── valgrind-filter │ ├── redemption-filter │ ├── valgrind-filter-ssl │ ├── valgrind-ignore-ssl │ └── valgrind-ignore-ssl-snappy └── web_video.html ├── veracode-package.sh └── veracode.expmap /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/Jamroot -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/README.md -------------------------------------------------------------------------------- /docs/Coding_Guidelines.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/Coding_Guidelines.tex -------------------------------------------------------------------------------- /docs/Coding_Guidelines_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/Coding_Guidelines_2.md -------------------------------------------------------------------------------- /docs/FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/FAQ.txt -------------------------------------------------------------------------------- /docs/MCSPDU_GRAMMAR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/MCSPDU_GRAMMAR.txt -------------------------------------------------------------------------------- /docs/PARAMETRES_VIDEO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/PARAMETRES_VIDEO -------------------------------------------------------------------------------- /docs/ROADMAP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/ROADMAP.rst -------------------------------------------------------------------------------- /docs/TU/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/.gitignore -------------------------------------------------------------------------------- /docs/TU/.ninja_deps: -------------------------------------------------------------------------------- 1 | # ninjadeps 2 |  -------------------------------------------------------------------------------- /docs/TU/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/.ninja_log -------------------------------------------------------------------------------- /docs/TU/bjamfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/bjamfilter.png -------------------------------------------------------------------------------- /docs/TU/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/build.ninja -------------------------------------------------------------------------------- /docs/TU/rdpcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/rdpcolor.png -------------------------------------------------------------------------------- /docs/TU/unit_test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/unit_test.pdf -------------------------------------------------------------------------------- /docs/TU/unit_test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/unit_test.tex -------------------------------------------------------------------------------- /docs/TU/unittestcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/TU/unittestcolor.png -------------------------------------------------------------------------------- /docs/X224_class0_cheat_sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/X224_class0_cheat_sheet.txt -------------------------------------------------------------------------------- /docs/bitmap_RLE_cheat_sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/bitmap_RLE_cheat_sheet.txt -------------------------------------------------------------------------------- /docs/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/changelog -------------------------------------------------------------------------------- /docs/coding_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/coding_style.txt -------------------------------------------------------------------------------- /docs/conf.ffmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/conf.ffmpeg.txt -------------------------------------------------------------------------------- /docs/conf.x264.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/conf.x264.txt -------------------------------------------------------------------------------- /docs/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/copyright -------------------------------------------------------------------------------- /docs/func_utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/func_utils/README.md -------------------------------------------------------------------------------- /docs/func_utils/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/func_utils/markdown.md -------------------------------------------------------------------------------- /docs/func_utils/slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/func_utils/slides.html -------------------------------------------------------------------------------- /docs/keyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/keyboard/README.md -------------------------------------------------------------------------------- /docs/keyboard/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/keyboard/markdown.md -------------------------------------------------------------------------------- /docs/keyboard/remark-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/keyboard/remark-latest.min.js -------------------------------------------------------------------------------- /docs/keyboard/slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/keyboard/slides.html -------------------------------------------------------------------------------- /docs/log_siem_arcsight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/log_siem_arcsight.md -------------------------------------------------------------------------------- /docs/manual_to_redemption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/manual_to_redemption.rst -------------------------------------------------------------------------------- /docs/mod_rdp_verbose_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/mod_rdp_verbose_flags.txt -------------------------------------------------------------------------------- /docs/rdp-scan-codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/rdp-scan-codes.txt -------------------------------------------------------------------------------- /docs/redop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/redop.py -------------------------------------------------------------------------------- /docs/redop_grammar.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/redop_grammar.g -------------------------------------------------------------------------------- /docs/theme/theme_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/theme/theme_color.txt -------------------------------------------------------------------------------- /docs/theme/theme_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/theme/theme_global.png -------------------------------------------------------------------------------- /docs/theme/theme_selector_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/theme/theme_selector_1.png -------------------------------------------------------------------------------- /docs/theme/theme_selector_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/theme/theme_selector_2.png -------------------------------------------------------------------------------- /docs/theme/theme_tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/theme/theme_tooltip.png -------------------------------------------------------------------------------- /docs/unsupported_features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/docs/unsupported_features.txt -------------------------------------------------------------------------------- /include/config_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/include/config_variant.hpp -------------------------------------------------------------------------------- /include/main/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/include/main/version.hpp -------------------------------------------------------------------------------- /jam/cxxflags.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/cxxflags.jam -------------------------------------------------------------------------------- /jam/defines.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/defines.jam -------------------------------------------------------------------------------- /jam/includes.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/includes.jam -------------------------------------------------------------------------------- /jam/libs.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/libs.jam -------------------------------------------------------------------------------- /jam/ocr.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/ocr.jam -------------------------------------------------------------------------------- /jam/redemption-config.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/redemption-config.jam -------------------------------------------------------------------------------- /jam/redemption-dependencies.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/redemption-dependencies.jam -------------------------------------------------------------------------------- /jam/sanitizer.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/sanitizer.jam -------------------------------------------------------------------------------- /jam/testing-coverage.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/jam/testing-coverage.jam -------------------------------------------------------------------------------- /packaging/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/packaging/debian/changelog -------------------------------------------------------------------------------- /packaging/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/redemption.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/packaging/debian/redemption.install -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/packaging/package.sh -------------------------------------------------------------------------------- /projects/jsclient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/.gitignore -------------------------------------------------------------------------------- /projects/jsclient/Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/Jamroot -------------------------------------------------------------------------------- /projects/jsclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/README.md -------------------------------------------------------------------------------- /projects/jsclient/emscripten.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/emscripten.jam -------------------------------------------------------------------------------- /projects/jsclient/src/main/_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/src/main/_dummy.cpp -------------------------------------------------------------------------------- /projects/jsclient/src/redjs/front.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/src/redjs/front.cpp -------------------------------------------------------------------------------- /projects/jsclient/src/redjs/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/src/redjs/front.hpp -------------------------------------------------------------------------------- /projects/jsclient/targets.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/targets.jam -------------------------------------------------------------------------------- /projects/jsclient/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/jsclient/tools/README.md -------------------------------------------------------------------------------- /projects/ocr1/.gitignore: -------------------------------------------------------------------------------- 1 | /learning 2 | -------------------------------------------------------------------------------- /projects/ocr1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/Makefile -------------------------------------------------------------------------------- /projects/ocr1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/README.md -------------------------------------------------------------------------------- /projects/ocr1/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/cart.py -------------------------------------------------------------------------------- /projects/ocr1/cat_classifiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/cat_classifiers -------------------------------------------------------------------------------- /projects/ocr1/gen_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/gen_classifier.py -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/chiffres.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/cyrillic_tahoma_8_bold/chiffres.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/cyrillic_tahoma_8_bold/ligatures2.txt: -------------------------------------------------------------------------------- 1 | ît -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/cyrillic_tahoma_8_bold/speciaux.txt: -------------------------------------------------------------------------------- 1 | \\ / : * < > 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/cyrillic_tahoma_8_bold/symbols.txt: -------------------------------------------------------------------------------- 1 | & ~ ' ` ( [ - _ ç @ ) ] ° = } £ $ ¤ µ % § ! ; . , + € # 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/cyrillic_tahoma_8_bold/—.txt: -------------------------------------------------------------------------------- 1 | — 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/majuscules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.ok/majuscules.txt -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/minuscules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.ok/minuscules.txt -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/misc.txt: -------------------------------------------------------------------------------- 1 | \x17 \x3f 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/russian.repl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.ok/russian.repl -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/russian/compose_letters.txt: -------------------------------------------------------------------------------- 1 | \x1 \x2 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/russian/КЛ ТУ.txt: -------------------------------------------------------------------------------- 1 | КЛ ТУ -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/russian/ту ѳѵ.txt: -------------------------------------------------------------------------------- 1 | ту ѳѵ -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_11/Bibliothèques.txt: -------------------------------------------------------------------------------- 1 | B i b l i o t h è q u e s 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_11/accents-maj.txt: -------------------------------------------------------------------------------- 1 | Ë Ê È É Ä Â À Á Î Ö Ô Ü Û 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_11/chiffres.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_11/ligatures.txt: -------------------------------------------------------------------------------- 1 | rv 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_11/rv_u.txt: -------------------------------------------------------------------------------- 1 | rv u 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_11/speciaux.txt: -------------------------------------------------------------------------------- 1 | < > ? * | \\ / : 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_11/symbols.txt: -------------------------------------------------------------------------------- 1 | ç & µ $ £ § ° % = - ' ( _ + ! ) { } [ ] @ , ; . ~ 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_8_bold/chiffres.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_8_bold/speciaux.txt: -------------------------------------------------------------------------------- 1 | \\ / : * ? < > | 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/segoeUI_8_bold/symbols.txt: -------------------------------------------------------------------------------- 1 | & ~ ' ` ( [ { - _ ç @ ) ] } ° = £ $ ¤ µ % § ! ; . , + € # 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/speciaux.txt: -------------------------------------------------------------------------------- 1 | \\ / : * ? < > | 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/symbols.txt: -------------------------------------------------------------------------------- 1 | & ~ ' ` ( [ { - _ ç @ ) ] } ° = £ $ ¤ µ % § ! ; . , + € # 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/tahoma_8_bold/chiffres.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/tahoma_8_bold/ligatures2.txt: -------------------------------------------------------------------------------- 1 | ît -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/tahoma_8_bold/speciaux.txt: -------------------------------------------------------------------------------- 1 | \\ / : * < > 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/tahoma_8_bold/symbols.txt: -------------------------------------------------------------------------------- 1 | & ~ ' ` ( [ - _ ç @ ) ] ° = } £ $ ¤ µ % § ! ; . , + € # 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/tahoma_8_bold/—.txt: -------------------------------------------------------------------------------- 1 | — 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/trebuchetMS_10_bold/chiffres.txt: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/trebuchetMS_10_bold/ligatures.txt: -------------------------------------------------------------------------------- 1 | ve ows RD ls la ow _g Ré yi wi vi lo Re ys le 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/trebuchetMS_10_bold/speciaux.txt: -------------------------------------------------------------------------------- 1 | \\ / : * ? < > | 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.ok/trebuchetMS_10_bold/symbols.txt: -------------------------------------------------------------------------------- 1 | & ~ ' ` ( [ { - _ ç @ ) ] } ° = £ $ ¤ µ % § ! ; . , + € # 2 | -------------------------------------------------------------------------------- /projects/ocr1/learn.origin/,..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.origin/,..png -------------------------------------------------------------------------------- /projects/ocr1/learn.origin/01234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.origin/01234.png -------------------------------------------------------------------------------- /projects/ocr1/learn.origin/56789.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.origin/56789.png -------------------------------------------------------------------------------- /projects/ocr1/learn.origin/@{}~.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.origin/@{}~.png -------------------------------------------------------------------------------- /projects/ocr1/learn.origin/fififi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.origin/fififi.png -------------------------------------------------------------------------------- /projects/ocr1/learn.origin/yz-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learn.origin/yz-min.png -------------------------------------------------------------------------------- /projects/ocr1/learning.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learning.cc -------------------------------------------------------------------------------- /projects/ocr1/learning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/learning.sh -------------------------------------------------------------------------------- /projects/ocr1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/test.sh -------------------------------------------------------------------------------- /projects/ocr1/whitespace_width: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ocr1/whitespace_width -------------------------------------------------------------------------------- /projects/ppocr/mln/image/image2d.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/mln/image/image2d.hh -------------------------------------------------------------------------------- /projects/ppocr/ppocr/box_char/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/box_char/box.cpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/box_char/box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/box_char/box.hpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/image/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/image/image.cpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/image/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/image/image.hpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/image/pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/image/pixel.hpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/ocr2/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/ocr2/cache.hpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/ocr2/glyphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/ocr2/glyphs.cpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/ocr2/glyphs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/ocr2/glyphs.hpp -------------------------------------------------------------------------------- /projects/ppocr/ppocr/utils/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/ppocr/ppocr/utils/utf.hpp -------------------------------------------------------------------------------- /projects/qtclient/Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/qtclient/Jamroot -------------------------------------------------------------------------------- /projects/qtclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/qtclient/README.md -------------------------------------------------------------------------------- /projects/qtclient/targets.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/qtclient/targets.jam -------------------------------------------------------------------------------- /projects/qtclient2/Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/qtclient2/Jamroot -------------------------------------------------------------------------------- /projects/qtclient2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/qtclient2/README.md -------------------------------------------------------------------------------- /projects/qtclient2/src/qtclient2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/qtclient2/src/qtclient2.cpp -------------------------------------------------------------------------------- /projects/qtclient2/targets.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/qtclient2/targets.jam -------------------------------------------------------------------------------- /projects/redemption_configs/Jamroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/redemption_configs/Jamroot -------------------------------------------------------------------------------- /projects/redemption_configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/projects/redemption_configs/README.md -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/ruff.toml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/RAIL/client_execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/RAIL/client_execute.cpp -------------------------------------------------------------------------------- /src/RAIL/client_execute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/RAIL/client_execute.hpp -------------------------------------------------------------------------------- /src/acl/acl_field_mask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/acl_field_mask.hpp -------------------------------------------------------------------------------- /src/acl/acl_report.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/acl_report.hpp -------------------------------------------------------------------------------- /src/acl/acl_serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/acl_serializer.cpp -------------------------------------------------------------------------------- /src/acl/acl_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/acl_serializer.hpp -------------------------------------------------------------------------------- /src/acl/acl_update_session_report.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/acl_update_session_report.hpp -------------------------------------------------------------------------------- /src/acl/acl_verbose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/acl_verbose.hpp -------------------------------------------------------------------------------- /src/acl/auth_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/auth_api.hpp -------------------------------------------------------------------------------- /src/acl/connect_to_target_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/connect_to_target_host.hpp -------------------------------------------------------------------------------- /src/acl/file_system_license_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/file_system_license_store.hpp -------------------------------------------------------------------------------- /src/acl/kv_list_from_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/kv_list_from_strings.cpp -------------------------------------------------------------------------------- /src/acl/kv_list_from_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/kv_list_from_strings.hpp -------------------------------------------------------------------------------- /src/acl/license_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/license_api.hpp -------------------------------------------------------------------------------- /src/acl/mod_pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/mod_pack.hpp -------------------------------------------------------------------------------- /src/acl/mod_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/mod_wrapper.cpp -------------------------------------------------------------------------------- /src/acl/mod_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/mod_wrapper.hpp -------------------------------------------------------------------------------- /src/acl/module_manager/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/module_manager/enums.hpp -------------------------------------------------------------------------------- /src/acl/session_logfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/session_logfile.cpp -------------------------------------------------------------------------------- /src/acl/session_logfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/acl/session_logfile.hpp -------------------------------------------------------------------------------- /src/capture/agent_data_extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/agent_data_extractor.cpp -------------------------------------------------------------------------------- /src/capture/agent_data_extractor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/agent_data_extractor.hpp -------------------------------------------------------------------------------- /src/capture/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/capture.cpp -------------------------------------------------------------------------------- /src/capture/capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/capture.hpp -------------------------------------------------------------------------------- /src/capture/capture_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/capture_params.hpp -------------------------------------------------------------------------------- /src/capture/cryptofile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/cryptofile.hpp -------------------------------------------------------------------------------- /src/capture/drawable_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/drawable_params.hpp -------------------------------------------------------------------------------- /src/capture/fdx_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/fdx_capture.cpp -------------------------------------------------------------------------------- /src/capture/fdx_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/fdx_capture.hpp -------------------------------------------------------------------------------- /src/capture/file_to_graphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/file_to_graphic.cpp -------------------------------------------------------------------------------- /src/capture/file_to_graphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/file_to_graphic.hpp -------------------------------------------------------------------------------- /src/capture/full_video_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/full_video_params.hpp -------------------------------------------------------------------------------- /src/capture/kbd_log_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/kbd_log_params.hpp -------------------------------------------------------------------------------- /src/capture/lazy_drawable_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/lazy_drawable_pointer.hpp -------------------------------------------------------------------------------- /src/capture/md_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/md_hash.hpp -------------------------------------------------------------------------------- /src/capture/meta_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/meta_params.hpp -------------------------------------------------------------------------------- /src/capture/mwrm3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/mwrm3.hpp -------------------------------------------------------------------------------- /src/capture/notify_next_video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/notify_next_video.hpp -------------------------------------------------------------------------------- /src/capture/ocr/classification.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/classification.hh -------------------------------------------------------------------------------- /src/capture/ocr/extract_bars.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/extract_bars.hh -------------------------------------------------------------------------------- /src/capture/ocr/extract_data.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/extract_data.hh -------------------------------------------------------------------------------- /src/capture/ocr/fonts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/fonts.hpp -------------------------------------------------------------------------------- /src/capture/ocr/io_char_box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/io_char_box.hpp -------------------------------------------------------------------------------- /src/capture/ocr/labelize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/labelize.hh -------------------------------------------------------------------------------- /src/capture/ocr/locale/locale_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/locale/locale_id.hpp -------------------------------------------------------------------------------- /src/capture/ocr/rgb8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr/rgb8.hpp -------------------------------------------------------------------------------- /src/capture/ocr_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/ocr_params.hpp -------------------------------------------------------------------------------- /src/capture/params_from_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/params_from_ini.cpp -------------------------------------------------------------------------------- /src/capture/params_from_ini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/params_from_ini.hpp -------------------------------------------------------------------------------- /src/capture/pattern_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/pattern_params.hpp -------------------------------------------------------------------------------- /src/capture/png_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/png_params.hpp -------------------------------------------------------------------------------- /src/capture/rdp_ppocr/ocr_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/rdp_ppocr/ocr_context.hpp -------------------------------------------------------------------------------- /src/capture/redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/redis.cpp -------------------------------------------------------------------------------- /src/capture/redis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/redis.hpp -------------------------------------------------------------------------------- /src/capture/redis_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/redis_params.hpp -------------------------------------------------------------------------------- /src/capture/redis_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/redis_session.cpp -------------------------------------------------------------------------------- /src/capture/redis_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/redis_session.hpp -------------------------------------------------------------------------------- /src/capture/regions_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/regions_capture.cpp -------------------------------------------------------------------------------- /src/capture/regions_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/regions_capture.hpp -------------------------------------------------------------------------------- /src/capture/save_state_chunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/save_state_chunk.hpp -------------------------------------------------------------------------------- /src/capture/session_update_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/session_update_buffer.cpp -------------------------------------------------------------------------------- /src/capture/session_update_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/session_update_buffer.hpp -------------------------------------------------------------------------------- /src/capture/utils/pattutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/utils/pattutils.cpp -------------------------------------------------------------------------------- /src/capture/utils/pattutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/utils/pattutils.hpp -------------------------------------------------------------------------------- /src/capture/video_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/video_capture.cpp -------------------------------------------------------------------------------- /src/capture/video_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/video_capture.hpp -------------------------------------------------------------------------------- /src/capture/video_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/video_params.hpp -------------------------------------------------------------------------------- /src/capture/video_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/video_recorder.cpp -------------------------------------------------------------------------------- /src/capture/video_recorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/video_recorder.hpp -------------------------------------------------------------------------------- /src/capture/wrm_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/wrm_capture.hpp -------------------------------------------------------------------------------- /src/capture/wrm_chunk_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/wrm_chunk_type.hpp -------------------------------------------------------------------------------- /src/capture/wrm_meta_chunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/wrm_meta_chunk.hpp -------------------------------------------------------------------------------- /src/capture/wrm_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/capture/wrm_params.hpp -------------------------------------------------------------------------------- /src/client/common/new_mod_rdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/client/common/new_mod_rdp.cpp -------------------------------------------------------------------------------- /src/client/common/new_mod_rdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/client/common/new_mod_rdp.hpp -------------------------------------------------------------------------------- /src/client/common/new_mod_vnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/client/common/new_mod_vnc.cpp -------------------------------------------------------------------------------- /src/client/common/new_mod_vnc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/client/common/new_mod_vnc.hpp -------------------------------------------------------------------------------- /src/core/ERREF/ntstatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/ERREF/ntstatus.hpp -------------------------------------------------------------------------------- /src/core/FSCC/FileInformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/FSCC/FileInformation.hpp -------------------------------------------------------------------------------- /src/core/RDP/GraphicUpdatePDU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/GraphicUpdatePDU.hpp -------------------------------------------------------------------------------- /src/core/RDP/MonitorLayoutPDU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/MonitorLayoutPDU.hpp -------------------------------------------------------------------------------- /src/core/RDP/PersistentKeyListPDU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/PersistentKeyListPDU.hpp -------------------------------------------------------------------------------- /src/core/RDP/RDPDrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/RDPDrawable.cpp -------------------------------------------------------------------------------- /src/core/RDP/RDPDrawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/RDPDrawable.hpp -------------------------------------------------------------------------------- /src/core/RDP/RDPSerializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/RDPSerializer.hpp -------------------------------------------------------------------------------- /src/core/RDP/RDPSerializerVerbose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/RDPSerializerVerbose.hpp -------------------------------------------------------------------------------- /src/core/RDP/RefreshRectPDU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/RefreshRectPDU.hpp -------------------------------------------------------------------------------- /src/core/RDP/SaveSessionInfoPDU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/SaveSessionInfoPDU.hpp -------------------------------------------------------------------------------- /src/core/RDP/ServerRedirection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/ServerRedirection.hpp -------------------------------------------------------------------------------- /src/core/RDP/SuppressOutputPDU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/SuppressOutputPDU.hpp -------------------------------------------------------------------------------- /src/core/RDP/autoreconnect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/autoreconnect.hpp -------------------------------------------------------------------------------- /src/core/RDP/bitmapupdate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/bitmapupdate.hpp -------------------------------------------------------------------------------- /src/core/RDP/caches/bmpcache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/caches/bmpcache.hpp -------------------------------------------------------------------------------- /src/core/RDP/caches/brushcache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/caches/brushcache.hpp -------------------------------------------------------------------------------- /src/core/RDP/caches/glyphcache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/caches/glyphcache.hpp -------------------------------------------------------------------------------- /src/core/RDP/caches/pointercache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/caches/pointercache.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/common.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/control.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/general.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/general.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/input.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/order.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/pointer.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/rail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/rail.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/virchan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/virchan.hpp -------------------------------------------------------------------------------- /src/core/RDP/capabilities/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/capabilities/window.hpp -------------------------------------------------------------------------------- /src/core/RDP/channels/drdynvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/channels/drdynvc.hpp -------------------------------------------------------------------------------- /src/core/RDP/channels/rdpdr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/channels/rdpdr.hpp -------------------------------------------------------------------------------- /src/core/RDP/clipboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/clipboard.hpp -------------------------------------------------------------------------------- /src/core/RDP/dwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/dwt.cpp -------------------------------------------------------------------------------- /src/core/RDP/dwt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/dwt.hpp -------------------------------------------------------------------------------- /src/core/RDP/fastpath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/fastpath.hpp -------------------------------------------------------------------------------- /src/core/RDP/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/gcc.hpp -------------------------------------------------------------------------------- /src/core/RDP/gcc/data_block_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/gcc/data_block_type.hpp -------------------------------------------------------------------------------- /src/core/RDP/gcc/userdata/cs_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/gcc/userdata/cs_core.hpp -------------------------------------------------------------------------------- /src/core/RDP/gcc/userdata/cs_net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/gcc/userdata/cs_net.hpp -------------------------------------------------------------------------------- /src/core/RDP/gcc/userdata/sc_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/gcc/userdata/sc_core.hpp -------------------------------------------------------------------------------- /src/core/RDP/gcc/userdata/sc_net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/gcc/userdata/sc_net.hpp -------------------------------------------------------------------------------- /src/core/RDP/gcc/userdata/sc_sec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/gcc/userdata/sc_sec1.hpp -------------------------------------------------------------------------------- /src/core/RDP/lic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/lic.hpp -------------------------------------------------------------------------------- /src/core/RDP/logon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/logon.hpp -------------------------------------------------------------------------------- /src/core/RDP/mcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mcs.hpp -------------------------------------------------------------------------------- /src/core/RDP/mppc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mppc.cpp -------------------------------------------------------------------------------- /src/core/RDP/mppc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mppc.hpp -------------------------------------------------------------------------------- /src/core/RDP/mppc/mppc_40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mppc/mppc_40.hpp -------------------------------------------------------------------------------- /src/core/RDP/mppc/mppc_50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mppc/mppc_50.hpp -------------------------------------------------------------------------------- /src/core/RDP/mppc/mppc_60.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mppc/mppc_60.hpp -------------------------------------------------------------------------------- /src/core/RDP/mppc/mppc_61.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mppc/mppc_61.hpp -------------------------------------------------------------------------------- /src/core/RDP/mppc/mppc_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/mppc/mppc_utils.hpp -------------------------------------------------------------------------------- /src/core/RDP/nego.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nego.cpp -------------------------------------------------------------------------------- /src/core/RDP/nego.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nego.hpp -------------------------------------------------------------------------------- /src/core/RDP/nla/credssp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nla/credssp.hpp -------------------------------------------------------------------------------- /src/core/RDP/nla/kerberos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nla/kerberos.cpp -------------------------------------------------------------------------------- /src/core/RDP/nla/kerberos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nla/kerberos.hpp -------------------------------------------------------------------------------- /src/core/RDP/nla/nla_client_ntlm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nla/nla_client_ntlm.hpp -------------------------------------------------------------------------------- /src/core/RDP/nla/nla_server_krb5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nla/nla_server_krb5.hpp -------------------------------------------------------------------------------- /src/core/RDP/nla/nla_server_ntlm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nla/nla_server_ntlm.hpp -------------------------------------------------------------------------------- /src/core/RDP/nla/ntlm_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/nla/ntlm_message.hpp -------------------------------------------------------------------------------- /src/core/RDP/orders/remoteFx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/orders/remoteFx.cpp -------------------------------------------------------------------------------- /src/core/RDP/orders/remoteFx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/orders/remoteFx.hpp -------------------------------------------------------------------------------- /src/core/RDP/out_per_bstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/out_per_bstream.hpp -------------------------------------------------------------------------------- /src/core/RDP/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/protocol.hpp -------------------------------------------------------------------------------- /src/core/RDP/rdp_draw_glyphs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/rdp_draw_glyphs.hpp -------------------------------------------------------------------------------- /src/core/RDP/rdp_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/rdp_pointer.cpp -------------------------------------------------------------------------------- /src/core/RDP/rdp_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/rdp_pointer.hpp -------------------------------------------------------------------------------- /src/core/RDP/remote_programs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/remote_programs.hpp -------------------------------------------------------------------------------- /src/core/RDP/rlgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/rlgr.cpp -------------------------------------------------------------------------------- /src/core/RDP/rlgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/rlgr.hpp -------------------------------------------------------------------------------- /src/core/RDP/sec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/sec.hpp -------------------------------------------------------------------------------- /src/core/RDP/share.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/share.hpp -------------------------------------------------------------------------------- /src/core/RDP/slowpath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/slowpath.hpp -------------------------------------------------------------------------------- /src/core/RDP/state_chunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/state_chunk.hpp -------------------------------------------------------------------------------- /src/core/RDP/tpdu_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/tpdu_buffer.hpp -------------------------------------------------------------------------------- /src/core/RDP/virtual_channel_pdu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/virtual_channel_pdu.hpp -------------------------------------------------------------------------------- /src/core/RDP/x224.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDP/x224.hpp -------------------------------------------------------------------------------- /src/core/RDPEA/audio_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/RDPEA/audio_output.hpp -------------------------------------------------------------------------------- /src/core/SMB2/MessageSyntax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/SMB2/MessageSyntax.hpp -------------------------------------------------------------------------------- /src/core/WMF/MetaFileFormat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/WMF/MetaFileFormat.hpp -------------------------------------------------------------------------------- /src/core/app_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/app_path.cpp -------------------------------------------------------------------------------- /src/core/app_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/app_path.hpp -------------------------------------------------------------------------------- /src/core/auth_channel_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/auth_channel_name.hpp -------------------------------------------------------------------------------- /src/core/buf64k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/buf64k.hpp -------------------------------------------------------------------------------- /src/core/callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/callback.hpp -------------------------------------------------------------------------------- /src/core/certificate_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/certificate_enums.hpp -------------------------------------------------------------------------------- /src/core/channel_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/channel_list.hpp -------------------------------------------------------------------------------- /src/core/channel_names.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/channel_names.hpp -------------------------------------------------------------------------------- /src/core/channels_authorizations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/channels_authorizations.cpp -------------------------------------------------------------------------------- /src/core/channels_authorizations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/channels_authorizations.hpp -------------------------------------------------------------------------------- /src/core/check_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/check_files.cpp -------------------------------------------------------------------------------- /src/core/check_files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/check_files.hpp -------------------------------------------------------------------------------- /src/core/client_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/client_info.hpp -------------------------------------------------------------------------------- /src/core/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/error.cpp -------------------------------------------------------------------------------- /src/core/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/error.hpp -------------------------------------------------------------------------------- /src/core/events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/events.hpp -------------------------------------------------------------------------------- /src/core/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/font.cpp -------------------------------------------------------------------------------- /src/core/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/font.hpp -------------------------------------------------------------------------------- /src/core/front_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/front_api.hpp -------------------------------------------------------------------------------- /src/core/glyph_to_24_bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/glyph_to_24_bitmap.hpp -------------------------------------------------------------------------------- /src/core/guest_ctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/guest_ctx.hpp -------------------------------------------------------------------------------- /src/core/listen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/listen.hpp -------------------------------------------------------------------------------- /src/core/log_certificate_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/log_certificate_status.cpp -------------------------------------------------------------------------------- /src/core/log_certificate_status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/log_certificate_status.hpp -------------------------------------------------------------------------------- /src/core/log_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/log_id.hpp -------------------------------------------------------------------------------- /src/core/mainloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/mainloop.cpp -------------------------------------------------------------------------------- /src/core/mainloop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/mainloop.hpp -------------------------------------------------------------------------------- /src/core/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/misc.hpp -------------------------------------------------------------------------------- /src/core/pid_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/pid_file.cpp -------------------------------------------------------------------------------- /src/core/pid_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/pid_file.hpp -------------------------------------------------------------------------------- /src/core/server_cert_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/server_cert_params.hpp -------------------------------------------------------------------------------- /src/core/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/session.cpp -------------------------------------------------------------------------------- /src/core/session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/session.hpp -------------------------------------------------------------------------------- /src/core/session_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/session_events.cpp -------------------------------------------------------------------------------- /src/core/session_events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/session_events.hpp -------------------------------------------------------------------------------- /src/core/session_verbose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/session_verbose.hpp -------------------------------------------------------------------------------- /src/core/stream_throw_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/stream_throw_helpers.hpp -------------------------------------------------------------------------------- /src/core/window_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/core/window_constants.hpp -------------------------------------------------------------------------------- /src/cxx/compiler_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/cxx/compiler_version.hpp -------------------------------------------------------------------------------- /src/cxx/cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/cxx/cxx.hpp -------------------------------------------------------------------------------- /src/cxx/diagnostic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/cxx/diagnostic.hpp -------------------------------------------------------------------------------- /src/front/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/front/front.hpp -------------------------------------------------------------------------------- /src/gdi/capture_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/capture_api.hpp -------------------------------------------------------------------------------- /src/gdi/capture_probe_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/capture_probe_api.hpp -------------------------------------------------------------------------------- /src/gdi/clip_from_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/clip_from_cmd.cpp -------------------------------------------------------------------------------- /src/gdi/clip_from_cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/clip_from_cmd.hpp -------------------------------------------------------------------------------- /src/gdi/draw_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/draw_utils.cpp -------------------------------------------------------------------------------- /src/gdi/draw_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/draw_utils.hpp -------------------------------------------------------------------------------- /src/gdi/graphic_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/graphic_api.cpp -------------------------------------------------------------------------------- /src/gdi/graphic_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/graphic_api.hpp -------------------------------------------------------------------------------- /src/gdi/graphic_api_forwarder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/graphic_api_forwarder.hpp -------------------------------------------------------------------------------- /src/gdi/graphic_cmd_color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/graphic_cmd_color.hpp -------------------------------------------------------------------------------- /src/gdi/graphic_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/graphic_dispatcher.hpp -------------------------------------------------------------------------------- /src/gdi/kbd_input_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/kbd_input_api.hpp -------------------------------------------------------------------------------- /src/gdi/osd_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/osd_api.hpp -------------------------------------------------------------------------------- /src/gdi/protected_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/protected_graphics.cpp -------------------------------------------------------------------------------- /src/gdi/protected_graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/protected_graphics.hpp -------------------------------------------------------------------------------- /src/gdi/rect_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/rect_tracker.cpp -------------------------------------------------------------------------------- /src/gdi/rect_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/rect_tracker.hpp -------------------------------------------------------------------------------- /src/gdi/relayout_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/relayout_api.hpp -------------------------------------------------------------------------------- /src/gdi/resize_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/resize_api.hpp -------------------------------------------------------------------------------- /src/gdi/screen_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/screen_functions.cpp -------------------------------------------------------------------------------- /src/gdi/screen_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/screen_functions.hpp -------------------------------------------------------------------------------- /src/gdi/screen_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/screen_info.hpp -------------------------------------------------------------------------------- /src/gdi/subrect4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/subrect4.hpp -------------------------------------------------------------------------------- /src/gdi/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/text.cpp -------------------------------------------------------------------------------- /src/gdi/text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/text.hpp -------------------------------------------------------------------------------- /src/gdi/updatable_graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/gdi/updatable_graphics.hpp -------------------------------------------------------------------------------- /src/headlessclient/headless_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/headlessclient/headless_path.cpp -------------------------------------------------------------------------------- /src/headlessclient/headless_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/headlessclient/headless_path.hpp -------------------------------------------------------------------------------- /src/headlessclient/headless_repl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/headlessclient/headless_repl.cpp -------------------------------------------------------------------------------- /src/headlessclient/headless_repl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/headlessclient/headless_repl.hpp -------------------------------------------------------------------------------- /src/keyboard/kbdtypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/kbdtypes.hpp -------------------------------------------------------------------------------- /src/keyboard/key_mod_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/key_mod_flags.hpp -------------------------------------------------------------------------------- /src/keyboard/keylayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/keylayout.hpp -------------------------------------------------------------------------------- /src/keyboard/keylayouts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/keylayouts.cpp -------------------------------------------------------------------------------- /src/keyboard/keylayouts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/keylayouts.hpp -------------------------------------------------------------------------------- /src/keyboard/keymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/keymap.cpp -------------------------------------------------------------------------------- /src/keyboard/keymap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/keymap.hpp -------------------------------------------------------------------------------- /src/keyboard/keymapsym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/keymapsym.cpp -------------------------------------------------------------------------------- /src/keyboard/keymapsym.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/keyboard/keymapsym.hpp -------------------------------------------------------------------------------- /src/lib/credis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/lib/credis.cpp -------------------------------------------------------------------------------- /src/lib/credis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/lib/credis.hpp -------------------------------------------------------------------------------- /src/lib/do_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/lib/do_recorder.cpp -------------------------------------------------------------------------------- /src/lib/do_recorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/lib/do_recorder.hpp -------------------------------------------------------------------------------- /src/lib/scytale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/lib/scytale.cpp -------------------------------------------------------------------------------- /src/lib/scytale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/lib/scytale.hpp -------------------------------------------------------------------------------- /src/main/extract_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/extract_text.cpp -------------------------------------------------------------------------------- /src/main/headlessclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/headlessclient.cpp -------------------------------------------------------------------------------- /src/main/ini_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/ini_checker.cpp -------------------------------------------------------------------------------- /src/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/main.cpp -------------------------------------------------------------------------------- /src/main/mwrm3_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/mwrm3_editor.cpp -------------------------------------------------------------------------------- /src/main/nla_server_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/nla_server_cli.cpp -------------------------------------------------------------------------------- /src/main/ppocr_extract_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/ppocr_extract_text.cpp -------------------------------------------------------------------------------- /src/main/proxy_recorder_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/proxy_recorder_cli.cpp -------------------------------------------------------------------------------- /src/main/redrec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/main/redrec.cpp -------------------------------------------------------------------------------- /src/mod/file_validator_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/file_validator_service.hpp -------------------------------------------------------------------------------- /src/mod/internal/bouncer2_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/bouncer2_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/bouncer2_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/bouncer2_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/button_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/button_state.hpp -------------------------------------------------------------------------------- /src/mod/internal/close_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/close_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/close_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/close_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/copy_paste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/copy_paste.cpp -------------------------------------------------------------------------------- /src/mod/internal/copy_paste.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/copy_paste.hpp -------------------------------------------------------------------------------- /src/mod/internal/dialog_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/dialog_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/dialog_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/dialog_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/login_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/login_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/login_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/login_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/rail_mod_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/rail_mod_base.cpp -------------------------------------------------------------------------------- /src/mod/internal/rail_mod_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/rail_mod_base.hpp -------------------------------------------------------------------------------- /src/mod/internal/replay_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/replay_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/replay_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/replay_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/selector_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/selector_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/selector_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/selector_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/test_card_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/test_card_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/test_card_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/test_card_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/transition_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/transition_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/transition_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/transition_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/wait_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/wait_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/wait_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/wait_mod.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/button.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/button.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/composite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/composite.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/composite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/composite.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/dialog.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/dialog.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/edit.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/edit.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/help_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/help_icon.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/help_icon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/help_icon.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/image.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/image.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/label.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/label.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/login.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/login.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/login.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/multiline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/multiline.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/multiline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/multiline.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/password.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/password.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/password.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/screen.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/screen.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/scroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/scroll.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/scroll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/scroll.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/selector.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/selector.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/wab_close.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/wab_close.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/wab_close.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/wab_close.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/wait.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget/wait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/wait.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget/widget.hpp -------------------------------------------------------------------------------- /src/mod/internal/widget_test_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget_test_mod.cpp -------------------------------------------------------------------------------- /src/mod/internal/widget_test_mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/internal/widget_test_mod.hpp -------------------------------------------------------------------------------- /src/mod/load_server_cert_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/load_server_cert_params.hpp -------------------------------------------------------------------------------- /src/mod/mod_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/mod_api.hpp -------------------------------------------------------------------------------- /src/mod/null/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/null/null.hpp -------------------------------------------------------------------------------- /src/mod/rdp/channels/base_channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/channels/base_channel.hpp -------------------------------------------------------------------------------- /src/mod/rdp/channels/rail_channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/channels/rail_channel.hpp -------------------------------------------------------------------------------- /src/mod/rdp/channels/sespro_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/channels/sespro_api.hpp -------------------------------------------------------------------------------- /src/mod/rdp/mod_rdp_callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/mod_rdp_callback.hpp -------------------------------------------------------------------------------- /src/mod/rdp/mod_rdp_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/mod_rdp_factory.hpp -------------------------------------------------------------------------------- /src/mod/rdp/mod_rdp_variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/mod_rdp_variables.hpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp.hpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_api.hpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_negociation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_negociation.cpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_negociation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_negociation.hpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_negociation_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_negociation_data.cpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_negociation_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_negociation_data.hpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_orders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_orders.hpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_params.hpp -------------------------------------------------------------------------------- /src/mod/rdp/rdp_verbose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/rdp_verbose.hpp -------------------------------------------------------------------------------- /src/mod/rdp/windowing_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/rdp/windowing_api.hpp -------------------------------------------------------------------------------- /src/mod/vnc/dsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/dsm.cpp -------------------------------------------------------------------------------- /src/mod/vnc/dsm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/dsm.hpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/copyrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/copyrect.cpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/copyrect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/copyrect.hpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/cursor.cpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/cursor.hpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/encoder_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/encoder_api.hpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/hextile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/hextile.cpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/hextile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/hextile.hpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/raw.cpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/raw.hpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/rre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/rre.cpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/rre.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/rre.hpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/zrle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/zrle.cpp -------------------------------------------------------------------------------- /src/mod/vnc/encoder/zrle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/encoder/zrle.hpp -------------------------------------------------------------------------------- /src/mod/vnc/newline_convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/newline_convert.hpp -------------------------------------------------------------------------------- /src/mod/vnc/ultraVnc_protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/ultraVnc_protocol.txt -------------------------------------------------------------------------------- /src/mod/vnc/vnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/vnc.cpp -------------------------------------------------------------------------------- /src/mod/vnc/vnc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/vnc.hpp -------------------------------------------------------------------------------- /src/mod/vnc/vnc_verbose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/mod/vnc/vnc_verbose.hpp -------------------------------------------------------------------------------- /src/proxy_recorder/nego_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/proxy_recorder/nego_client.hpp -------------------------------------------------------------------------------- /src/proxy_recorder/nego_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/proxy_recorder/nego_server.hpp -------------------------------------------------------------------------------- /src/proxy_recorder/proxy_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/proxy_recorder/proxy_recorder.cpp -------------------------------------------------------------------------------- /src/system/linux/system/ssl_md4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/system/linux/system/ssl_md4.hpp -------------------------------------------------------------------------------- /src/system/linux/system/ssl_md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/system/linux/system/ssl_md5.hpp -------------------------------------------------------------------------------- /src/system/linux/system/ssl_rc4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/system/linux/system/ssl_rc4.hpp -------------------------------------------------------------------------------- /src/system/linux/system/urandom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/system/linux/system/urandom.hpp -------------------------------------------------------------------------------- /src/translation/gettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/gettext.cpp -------------------------------------------------------------------------------- /src/translation/gettext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/gettext.hpp -------------------------------------------------------------------------------- /src/translation/local_err_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/local_err_msg.cpp -------------------------------------------------------------------------------- /src/translation/local_err_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/local_err_msg.hpp -------------------------------------------------------------------------------- /src/translation/translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/translation.cpp -------------------------------------------------------------------------------- /src/translation/translation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/translation.hpp -------------------------------------------------------------------------------- /src/translation/trkey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/trkey.hpp -------------------------------------------------------------------------------- /src/translation/trkeys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/trkeys.hpp -------------------------------------------------------------------------------- /src/translation/trkeys_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/translation/trkeys_def.hpp -------------------------------------------------------------------------------- /src/transport/crypto_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/crypto_transport.cpp -------------------------------------------------------------------------------- /src/transport/crypto_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/crypto_transport.hpp -------------------------------------------------------------------------------- /src/transport/file_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/file_transport.cpp -------------------------------------------------------------------------------- /src/transport/file_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/file_transport.hpp -------------------------------------------------------------------------------- /src/transport/mwrm_file_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/mwrm_file_data.cpp -------------------------------------------------------------------------------- /src/transport/mwrm_file_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/mwrm_file_data.hpp -------------------------------------------------------------------------------- /src/transport/mwrm_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/mwrm_reader.cpp -------------------------------------------------------------------------------- /src/transport/mwrm_reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/mwrm_reader.hpp -------------------------------------------------------------------------------- /src/transport/replay_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/replay_transport.cpp -------------------------------------------------------------------------------- /src/transport/replay_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/replay_transport.hpp -------------------------------------------------------------------------------- /src/transport/socket_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/socket_transport.cpp -------------------------------------------------------------------------------- /src/transport/socket_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/socket_transport.hpp -------------------------------------------------------------------------------- /src/transport/transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/transport.hpp -------------------------------------------------------------------------------- /src/transport/ws/ws_protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/ws/ws_protocol.hpp -------------------------------------------------------------------------------- /src/transport/ws_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/ws_transport.cpp -------------------------------------------------------------------------------- /src/transport/ws_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/transport/ws_transport.hpp -------------------------------------------------------------------------------- /src/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/README.md -------------------------------------------------------------------------------- /src/utils/ascii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/ascii.hpp -------------------------------------------------------------------------------- /src/utils/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/base64.cpp -------------------------------------------------------------------------------- /src/utils/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/base64.hpp -------------------------------------------------------------------------------- /src/utils/basic_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/basic_function.hpp -------------------------------------------------------------------------------- /src/utils/bitfu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitfu.hpp -------------------------------------------------------------------------------- /src/utils/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitmap.cpp -------------------------------------------------------------------------------- /src/utils/bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitmap.hpp -------------------------------------------------------------------------------- /src/utils/bitmap_data_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitmap_data_allocator.cpp -------------------------------------------------------------------------------- /src/utils/bitmap_data_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitmap_data_allocator.hpp -------------------------------------------------------------------------------- /src/utils/bitmap_from_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitmap_from_file.cpp -------------------------------------------------------------------------------- /src/utils/bitmap_from_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitmap_from_file.hpp -------------------------------------------------------------------------------- /src/utils/bitmap_private_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitmap_private_data.hpp -------------------------------------------------------------------------------- /src/utils/bitset_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitset_stream.hpp -------------------------------------------------------------------------------- /src/utils/bitstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/bitstream.hpp -------------------------------------------------------------------------------- /src/utils/c_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/c_interface.hpp -------------------------------------------------------------------------------- /src/utils/cache_index_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/cache_index_mapping.hpp -------------------------------------------------------------------------------- /src/utils/cfgloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/cfgloader.cpp -------------------------------------------------------------------------------- /src/utils/cfgloader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/cfgloader.hpp -------------------------------------------------------------------------------- /src/utils/cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/cli.hpp -------------------------------------------------------------------------------- /src/utils/cli_chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/cli_chrono.hpp -------------------------------------------------------------------------------- /src/utils/cli_screen_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/cli_screen_info.hpp -------------------------------------------------------------------------------- /src/utils/colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/colors.hpp -------------------------------------------------------------------------------- /src/utils/contiguous_sub_rect_f.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/contiguous_sub_rect_f.hpp -------------------------------------------------------------------------------- /src/utils/cpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/cpack.hpp -------------------------------------------------------------------------------- /src/utils/crypto/cryptcontext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/crypto/cryptcontext.hpp -------------------------------------------------------------------------------- /src/utils/crypto/ssl_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/crypto/ssl_lib.hpp -------------------------------------------------------------------------------- /src/utils/crypto/ssl_md4_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/crypto/ssl_md4_direct.hpp -------------------------------------------------------------------------------- /src/utils/crypto/ssl_md5_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/crypto/ssl_md5_direct.hpp -------------------------------------------------------------------------------- /src/utils/crypto/ssl_rc4_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/crypto/ssl_rc4_direct.hpp -------------------------------------------------------------------------------- /src/utils/crypto/ssl_sign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/crypto/ssl_sign.hpp -------------------------------------------------------------------------------- /src/utils/d3des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/d3des.cpp -------------------------------------------------------------------------------- /src/utils/d3des.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/d3des.hpp -------------------------------------------------------------------------------- /src/utils/diffiehellman.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/diffiehellman.hpp -------------------------------------------------------------------------------- /src/utils/drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/drawable.cpp -------------------------------------------------------------------------------- /src/utils/drawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/drawable.hpp -------------------------------------------------------------------------------- /src/utils/drawable_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/drawable_pointer.cpp -------------------------------------------------------------------------------- /src/utils/drawable_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/drawable_pointer.hpp -------------------------------------------------------------------------------- /src/utils/ellipse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/ellipse.hpp -------------------------------------------------------------------------------- /src/utils/error_message_ctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/error_message_ctx.hpp -------------------------------------------------------------------------------- /src/utils/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/file.hpp -------------------------------------------------------------------------------- /src/utils/file_permissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/file_permissions.hpp -------------------------------------------------------------------------------- /src/utils/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/fileutils.cpp -------------------------------------------------------------------------------- /src/utils/fileutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/fileutils.hpp -------------------------------------------------------------------------------- /src/utils/fixed_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/fixed_random.hpp -------------------------------------------------------------------------------- /src/utils/function_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/function_ref.hpp -------------------------------------------------------------------------------- /src/utils/hexdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/hexdump.cpp -------------------------------------------------------------------------------- /src/utils/hexdump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/hexdump.hpp -------------------------------------------------------------------------------- /src/utils/id_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/id_manager.hpp -------------------------------------------------------------------------------- /src/utils/image_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/image_view.hpp -------------------------------------------------------------------------------- /src/utils/invalid_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/invalid_socket.hpp -------------------------------------------------------------------------------- /src/utils/ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/ip.cpp -------------------------------------------------------------------------------- /src/utils/ip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/ip.hpp -------------------------------------------------------------------------------- /src/utils/key_qvalue_pairs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/key_qvalue_pairs.hpp -------------------------------------------------------------------------------- /src/utils/limited_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/limited_array.hpp -------------------------------------------------------------------------------- /src/utils/line_equation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/line_equation.hpp -------------------------------------------------------------------------------- /src/utils/literals/utf16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/literals/utf16.hpp -------------------------------------------------------------------------------- /src/utils/load_theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/load_theme.cpp -------------------------------------------------------------------------------- /src/utils/load_theme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/load_theme.hpp -------------------------------------------------------------------------------- /src/utils/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/log.hpp -------------------------------------------------------------------------------- /src/utils/log_as_logprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/log_as_logprint.cpp -------------------------------------------------------------------------------- /src/utils/log_as_syslog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/log_as_syslog.cpp -------------------------------------------------------------------------------- /src/utils/log_siem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/log_siem.cpp -------------------------------------------------------------------------------- /src/utils/log_siem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/log_siem.hpp -------------------------------------------------------------------------------- /src/utils/meminfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/meminfo.hpp -------------------------------------------------------------------------------- /src/utils/monotonic_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/monotonic_clock.hpp -------------------------------------------------------------------------------- /src/utils/move_remaining_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/move_remaining_data.hpp -------------------------------------------------------------------------------- /src/utils/netutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/netutils.cpp -------------------------------------------------------------------------------- /src/utils/netutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/netutils.hpp -------------------------------------------------------------------------------- /src/utils/only_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/only_type.hpp -------------------------------------------------------------------------------- /src/utils/out_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/out_param.hpp -------------------------------------------------------------------------------- /src/utils/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/parse.hpp -------------------------------------------------------------------------------- /src/utils/parse_server_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/parse_server_message.hpp -------------------------------------------------------------------------------- /src/utils/pixel_conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/pixel_conversion.hpp -------------------------------------------------------------------------------- /src/utils/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/png.cpp -------------------------------------------------------------------------------- /src/utils/png.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/png.hpp -------------------------------------------------------------------------------- /src/utils/pp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/pp.hpp -------------------------------------------------------------------------------- /src/utils/primitives/primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/primitives/primitives.cpp -------------------------------------------------------------------------------- /src/utils/primitives/primitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/primitives/primitives.hpp -------------------------------------------------------------------------------- /src/utils/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/random.hpp -------------------------------------------------------------------------------- /src/utils/real_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/real_clock.hpp -------------------------------------------------------------------------------- /src/utils/recording_progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/recording_progress.hpp -------------------------------------------------------------------------------- /src/utils/rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/rect.hpp -------------------------------------------------------------------------------- /src/utils/redirection_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/redirection_info.hpp -------------------------------------------------------------------------------- /src/utils/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/ref.hpp -------------------------------------------------------------------------------- /src/utils/region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/region.hpp -------------------------------------------------------------------------------- /src/utils/rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/rle.cpp -------------------------------------------------------------------------------- /src/utils/rle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/rle.hpp -------------------------------------------------------------------------------- /src/utils/scaled_image24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/scaled_image24.cpp -------------------------------------------------------------------------------- /src/utils/scaled_image24.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/scaled_image24.hpp -------------------------------------------------------------------------------- /src/utils/screen_resolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/screen_resolution.hpp -------------------------------------------------------------------------------- /src/utils/select.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/select.hpp -------------------------------------------------------------------------------- /src/utils/serialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/serialize.hpp -------------------------------------------------------------------------------- /src/utils/snprintf_av.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/snprintf_av.hpp -------------------------------------------------------------------------------- /src/utils/stacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/stacktrace.cpp -------------------------------------------------------------------------------- /src/utils/stacktrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/stacktrace.hpp -------------------------------------------------------------------------------- /src/utils/static_fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/static_fmt.hpp -------------------------------------------------------------------------------- /src/utils/static_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/static_string.hpp -------------------------------------------------------------------------------- /src/utils/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/stream.hpp -------------------------------------------------------------------------------- /src/utils/string_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/string_c.hpp -------------------------------------------------------------------------------- /src/utils/strutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/strutils.cpp -------------------------------------------------------------------------------- /src/utils/strutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/strutils.hpp -------------------------------------------------------------------------------- /src/utils/sugar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/README.md -------------------------------------------------------------------------------- /src/utils/sugar/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/array.hpp -------------------------------------------------------------------------------- /src/utils/sugar/array_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/array_view.hpp -------------------------------------------------------------------------------- /src/utils/sugar/buf_maker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/buf_maker.hpp -------------------------------------------------------------------------------- /src/utils/sugar/buffer_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/buffer_view.hpp -------------------------------------------------------------------------------- /src/utils/sugar/byte_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/byte_copy.hpp -------------------------------------------------------------------------------- /src/utils/sugar/byte_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/byte_ptr.hpp -------------------------------------------------------------------------------- /src/utils/sugar/bytes_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/bytes_view.hpp -------------------------------------------------------------------------------- /src/utils/sugar/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/cast.hpp -------------------------------------------------------------------------------- /src/utils/sugar/chars_to_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/chars_to_int.hpp -------------------------------------------------------------------------------- /src/utils/sugar/create_enum_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/create_enum_map.hpp -------------------------------------------------------------------------------- /src/utils/sugar/finally.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/finally.hpp -------------------------------------------------------------------------------- /src/utils/sugar/flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/flags.hpp -------------------------------------------------------------------------------- /src/utils/sugar/int_to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/int_to_chars.hpp -------------------------------------------------------------------------------- /src/utils/sugar/movable_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/movable_ptr.hpp -------------------------------------------------------------------------------- /src/utils/sugar/multisz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/multisz.cpp -------------------------------------------------------------------------------- /src/utils/sugar/multisz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/multisz.hpp -------------------------------------------------------------------------------- /src/utils/sugar/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/noncopyable.hpp -------------------------------------------------------------------------------- /src/utils/sugar/not_null_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/not_null_ptr.hpp -------------------------------------------------------------------------------- /src/utils/sugar/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/overload.hpp -------------------------------------------------------------------------------- /src/utils/sugar/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/range.hpp -------------------------------------------------------------------------------- /src/utils/sugar/ranges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/ranges.hpp -------------------------------------------------------------------------------- /src/utils/sugar/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/scope_exit.hpp -------------------------------------------------------------------------------- /src/utils/sugar/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/split.hpp -------------------------------------------------------------------------------- /src/utils/sugar/static_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/static_vector.hpp -------------------------------------------------------------------------------- /src/utils/sugar/to_sv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/to_sv.hpp -------------------------------------------------------------------------------- /src/utils/sugar/unique_fd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/unique_fd.hpp -------------------------------------------------------------------------------- /src/utils/sugar/unordered_erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/unordered_erase.hpp -------------------------------------------------------------------------------- /src/utils/sugar/zstring_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/sugar/zstring_view.hpp -------------------------------------------------------------------------------- /src/utils/theme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/theme.hpp -------------------------------------------------------------------------------- /src/utils/timebase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/timebase.hpp -------------------------------------------------------------------------------- /src/utils/timestamp_tracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/timestamp_tracer.cpp -------------------------------------------------------------------------------- /src/utils/timestamp_tracer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/timestamp_tracer.hpp -------------------------------------------------------------------------------- /src/utils/tm_to_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/tm_to_chars.hpp -------------------------------------------------------------------------------- /src/utils/to_timeval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/to_timeval.hpp -------------------------------------------------------------------------------- /src/utils/txt2d_to_rects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/txt2d_to_rects.hpp -------------------------------------------------------------------------------- /src/utils/uninit_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/uninit_buffer.cpp -------------------------------------------------------------------------------- /src/utils/uninit_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/uninit_buffer.hpp -------------------------------------------------------------------------------- /src/utils/utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/utf.cpp -------------------------------------------------------------------------------- /src/utils/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/utf.hpp -------------------------------------------------------------------------------- /src/utils/utf_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/utf_string.hpp -------------------------------------------------------------------------------- /src/utils/verbose_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/verbose_flags.hpp -------------------------------------------------------------------------------- /src/utils/winpr/pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/winpr/pattern.hpp -------------------------------------------------------------------------------- /src/utils/zlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/src/utils/zlib.hpp -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/start.sh -------------------------------------------------------------------------------- /sys/etc/rdpproxy/dh3072.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/dh3072.pem -------------------------------------------------------------------------------- /sys/etc/rdpproxy/ppocr.latin-cyrillic/replacements.txt: -------------------------------------------------------------------------------- 1 | ь\x1 ы 2 | Ь\x2 Ы 3 | \x1 4 | \x2 5 | -------------------------------------------------------------------------------- /sys/etc/rdpproxy/ppocr.latin/replacements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rdpproxy-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rdpproxy-cert.pem -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rdpproxy-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rdpproxy-key.pem -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rdpproxy.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rdpproxy.crt -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rdpproxy.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rdpproxy.csr -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rdpproxy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rdpproxy.ini -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rdpproxy.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rdpproxy.key -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rdpproxy.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rdpproxy.p12 -------------------------------------------------------------------------------- /sys/etc/rdpproxy/rsakeys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/etc/rdpproxy/rsakeys.ini -------------------------------------------------------------------------------- /sys/share/rdpproxy/dejavu_14.rbf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/share/rdpproxy/dejavu_14.rbf2 -------------------------------------------------------------------------------- /sys/share/rdpproxy/wablogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/sys/share/rdpproxy/wablogo.png -------------------------------------------------------------------------------- /targets.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/targets.jam -------------------------------------------------------------------------------- /tests/RAIL/test_client_execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/RAIL/test_client_execute.cpp -------------------------------------------------------------------------------- /tests/acl/test_acl_field_mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/acl/test_acl_field_mask.cpp -------------------------------------------------------------------------------- /tests/acl/test_acl_serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/acl/test_acl_serializer.cpp -------------------------------------------------------------------------------- /tests/acl/test_license_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/acl/test_license_api.cpp -------------------------------------------------------------------------------- /tests/acl/test_mod_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/acl/test_mod_wrapper.cpp -------------------------------------------------------------------------------- /tests/acl/test_session_logfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/acl/test_session_logfile.cpp -------------------------------------------------------------------------------- /tests/capture/test_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_capture.cpp -------------------------------------------------------------------------------- /tests/capture/test_cryptofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_cryptofile.cpp -------------------------------------------------------------------------------- /tests/capture/test_fdx_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_fdx_capture.cpp -------------------------------------------------------------------------------- /tests/capture/test_mwrm3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_mwrm3.cpp -------------------------------------------------------------------------------- /tests/capture/test_ocr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_ocr.cpp -------------------------------------------------------------------------------- /tests/capture/test_ppocr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_ppocr.cpp -------------------------------------------------------------------------------- /tests/capture/test_redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_redis.cpp -------------------------------------------------------------------------------- /tests/capture/test_wrm_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/capture/test_wrm_capture.cpp -------------------------------------------------------------------------------- /tests/core/RDP/nla/test_credssp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/nla/test_credssp.cpp -------------------------------------------------------------------------------- /tests/core/RDP/nla/test_nla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/nla/test_nla.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_RDPDrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_RDPDrawable.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_clipboard.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_fastpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_fastpath.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_gcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_gcc.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_lic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_lic.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_logon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_logon.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_mcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_mcs.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_mppc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_mppc.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_nego.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_nego.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_rdp_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_rdp_pointer.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_remotefx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_remotefx.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_rlgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_rlgr.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_sec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_sec.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_share.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_share.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_slowpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_slowpath.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_tpdu_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_tpdu_buffer.cpp -------------------------------------------------------------------------------- /tests/core/RDP/test_x224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/RDP/test_x224.cpp -------------------------------------------------------------------------------- /tests/core/test_buf64k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_buf64k.cpp -------------------------------------------------------------------------------- /tests/core/test_channel_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_channel_list.cpp -------------------------------------------------------------------------------- /tests/core/test_channel_names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_channel_names.cpp -------------------------------------------------------------------------------- /tests/core/test_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_error.cpp -------------------------------------------------------------------------------- /tests/core/test_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_events.cpp -------------------------------------------------------------------------------- /tests/core/test_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_font.cpp -------------------------------------------------------------------------------- /tests/core/test_log_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_log_id.cpp -------------------------------------------------------------------------------- /tests/core/test_pid_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_pid_file.cpp -------------------------------------------------------------------------------- /tests/core/test_session_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/core/test_session_events.cpp -------------------------------------------------------------------------------- /tests/front/test_front.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/front/test_front.cpp -------------------------------------------------------------------------------- /tests/gdi/test_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/gdi/test_text.cpp -------------------------------------------------------------------------------- /tests/includes/fixtures/ad8b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/ad8b.png -------------------------------------------------------------------------------- /tests/includes/fixtures/badocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/badocr.png -------------------------------------------------------------------------------- /tests/includes/fixtures/disable_kbd_input_in_meta.ini: -------------------------------------------------------------------------------- 1 | [audit] 2 | enable_keyboard_log=0 3 | -------------------------------------------------------------------------------- /tests/includes/fixtures/img_ref/.gitattributes: -------------------------------------------------------------------------------- 1 | *.png -delta 2 | -------------------------------------------------------------------------------- /tests/includes/fixtures/red_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/red_box.png -------------------------------------------------------------------------------- /tests/includes/fixtures/replay.wrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/replay.wrm -------------------------------------------------------------------------------- /tests/includes/fixtures/rfc959.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/rfc959.txt -------------------------------------------------------------------------------- /tests/includes/fixtures/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/sample.bmp -------------------------------------------------------------------------------- /tests/includes/fixtures/sample.mwrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/sample.mwrm -------------------------------------------------------------------------------- /tests/includes/fixtures/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/sample.txt -------------------------------------------------------------------------------- /tests/includes/fixtures/sample0.wrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/sample0.wrm -------------------------------------------------------------------------------- /tests/includes/fixtures/sample1.wrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/sample1.wrm -------------------------------------------------------------------------------- /tests/includes/fixtures/sample2.wrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/sample2.wrm -------------------------------------------------------------------------------- /tests/includes/fixtures/smart_video_cropping_v1.ini: -------------------------------------------------------------------------------- 1 | [audit] 2 | smart_video_cropping=1 3 | -------------------------------------------------------------------------------- /tests/includes/fixtures/smart_video_cropping_v2.ini: -------------------------------------------------------------------------------- 1 | [audit] 2 | smart_video_cropping=2 3 | -------------------------------------------------------------------------------- /tests/includes/fixtures/test_infile.txt: -------------------------------------------------------------------------------- 1 | We read what we provide! -------------------------------------------------------------------------------- /tests/includes/fixtures/xrdp24b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/xrdp24b.bmp -------------------------------------------------------------------------------- /tests/includes/fixtures/xrdp24b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/xrdp24b.jpg -------------------------------------------------------------------------------- /tests/includes/fixtures/xrdp24b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/includes/fixtures/xrdp24b.png -------------------------------------------------------------------------------- /tests/keyboard/test_keymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/keyboard/test_keymap.cpp -------------------------------------------------------------------------------- /tests/keyboard/test_keymapsym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/keyboard/test_keymapsym.cpp -------------------------------------------------------------------------------- /tests/lib/test_credis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/lib/test_credis.cpp -------------------------------------------------------------------------------- /tests/lib/test_do_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/lib/test_do_recorder.cpp -------------------------------------------------------------------------------- /tests/lib/test_scytale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/lib/test_scytale.cpp -------------------------------------------------------------------------------- /tests/mod/rdp/test_rdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/mod/rdp/test_rdp.cpp -------------------------------------------------------------------------------- /tests/mod/vnc/encoder/test_zrle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/mod/vnc/encoder/test_zrle.cpp -------------------------------------------------------------------------------- /tests/mod/vnc/test_vnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/mod/vnc/test_vnc.cpp -------------------------------------------------------------------------------- /tests/server/test_mstsc_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/server/test_mstsc_client.cpp -------------------------------------------------------------------------------- /tests/translation/test_gettext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/translation/test_gettext.cpp -------------------------------------------------------------------------------- /tests/utils/crypto/test_ssl_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/crypto/test_ssl_lib.cpp -------------------------------------------------------------------------------- /tests/utils/literals/test_utf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/literals/test_utf16.cpp -------------------------------------------------------------------------------- /tests/utils/sugar/test_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/sugar/test_cast.cpp -------------------------------------------------------------------------------- /tests/utils/sugar/test_finally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/sugar/test_finally.cpp -------------------------------------------------------------------------------- /tests/utils/sugar/test_multisz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/sugar/test_multisz.cpp -------------------------------------------------------------------------------- /tests/utils/sugar/test_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/sugar/test_range.cpp -------------------------------------------------------------------------------- /tests/utils/sugar/test_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/sugar/test_split.cpp -------------------------------------------------------------------------------- /tests/utils/test_ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_ascii.cpp -------------------------------------------------------------------------------- /tests/utils/test_base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_base64.cpp -------------------------------------------------------------------------------- /tests/utils/test_bitfu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_bitfu.cpp -------------------------------------------------------------------------------- /tests/utils/test_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_bitmap.cpp -------------------------------------------------------------------------------- /tests/utils/test_bitset_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_bitset_stream.cpp -------------------------------------------------------------------------------- /tests/utils/test_bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_bitstream.cpp -------------------------------------------------------------------------------- /tests/utils/test_cfgloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_cfgloader.cpp -------------------------------------------------------------------------------- /tests/utils/test_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_cli.cpp -------------------------------------------------------------------------------- /tests/utils/test_colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_colors.cpp -------------------------------------------------------------------------------- /tests/utils/test_d3des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_d3des.cpp -------------------------------------------------------------------------------- /tests/utils/test_diffiehellman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_diffiehellman.cpp -------------------------------------------------------------------------------- /tests/utils/test_drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_drawable.cpp -------------------------------------------------------------------------------- /tests/utils/test_ellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_ellipse.cpp -------------------------------------------------------------------------------- /tests/utils/test_fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_fileutils.cpp -------------------------------------------------------------------------------- /tests/utils/test_id_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_id_manager.cpp -------------------------------------------------------------------------------- /tests/utils/test_ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_ip.cpp -------------------------------------------------------------------------------- /tests/utils/test_line_equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_line_equation.cpp -------------------------------------------------------------------------------- /tests/utils/test_load_theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_load_theme.cpp -------------------------------------------------------------------------------- /tests/utils/test_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_log.cpp -------------------------------------------------------------------------------- /tests/utils/test_log_siem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_log_siem.cpp -------------------------------------------------------------------------------- /tests/utils/test_meminfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_meminfo.cpp -------------------------------------------------------------------------------- /tests/utils/test_netutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_netutils.cpp -------------------------------------------------------------------------------- /tests/utils/test_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_parse.cpp -------------------------------------------------------------------------------- /tests/utils/test_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_png.cpp -------------------------------------------------------------------------------- /tests/utils/test_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_random.cpp -------------------------------------------------------------------------------- /tests/utils/test_rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_rect.cpp -------------------------------------------------------------------------------- /tests/utils/test_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_region.cpp -------------------------------------------------------------------------------- /tests/utils/test_rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_rle.cpp -------------------------------------------------------------------------------- /tests/utils/test_scaled_image24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_scaled_image24.cpp -------------------------------------------------------------------------------- /tests/utils/test_snprintf_av.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_snprintf_av.cpp -------------------------------------------------------------------------------- /tests/utils/test_static_fmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_static_fmt.cpp -------------------------------------------------------------------------------- /tests/utils/test_static_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_static_string.cpp -------------------------------------------------------------------------------- /tests/utils/test_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_stream.cpp -------------------------------------------------------------------------------- /tests/utils/test_string_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_string_c.cpp -------------------------------------------------------------------------------- /tests/utils/test_strutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_strutils.cpp -------------------------------------------------------------------------------- /tests/utils/test_to_timeval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_to_timeval.cpp -------------------------------------------------------------------------------- /tests/utils/test_txt2d_to_rects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_txt2d_to_rects.cpp -------------------------------------------------------------------------------- /tests/utils/test_utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_utf.cpp -------------------------------------------------------------------------------- /tests/utils/test_zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/test_zlib.cpp -------------------------------------------------------------------------------- /tests/utils/winpr/test_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tests/utils/winpr/test_pattern.cpp -------------------------------------------------------------------------------- /tools/bjam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/README.md -------------------------------------------------------------------------------- /tools/bjam/bjam_completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/bjam_completion.bash -------------------------------------------------------------------------------- /tools/bjam/bjam_completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/bjam_completion.zsh -------------------------------------------------------------------------------- /tools/bjam/bjam_filter.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/bjam_filter.awk -------------------------------------------------------------------------------- /tools/bjam/bjam_help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/bjam_help.sh -------------------------------------------------------------------------------- /tools/bjam/gen_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/gen_targets.py -------------------------------------------------------------------------------- /tools/bjam/unit_test_color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/unit_test_color.sh -------------------------------------------------------------------------------- /tools/bjam/user-config.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/bjam/user-config.jam -------------------------------------------------------------------------------- /tools/c++-analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/README.md -------------------------------------------------------------------------------- /tools/c++-analyzer/bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/bt -------------------------------------------------------------------------------- /tools/c++-analyzer/clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/clang-tidy -------------------------------------------------------------------------------- /tools/c++-analyzer/cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/cppcheck -------------------------------------------------------------------------------- /tools/c++-analyzer/include_graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/include_graph -------------------------------------------------------------------------------- /tools/c++-analyzer/include_tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/include_tree -------------------------------------------------------------------------------- /tools/c++-analyzer/infer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/infer -------------------------------------------------------------------------------- /tools/c++-analyzer/scan-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/scan-build -------------------------------------------------------------------------------- /tools/c++-analyzer/scan-build-bjam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/scan-build-bjam -------------------------------------------------------------------------------- /tools/c++-analyzer/tmalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/tmalloc -------------------------------------------------------------------------------- /tools/c++-analyzer/todo_extractor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/todo_extractor -------------------------------------------------------------------------------- /tools/c++-analyzer/tscancode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/tscancode -------------------------------------------------------------------------------- /tools/c++-analyzer/valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/c++-analyzer/valgrind -------------------------------------------------------------------------------- /tools/capture_to_source.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/capture_to_source.pl -------------------------------------------------------------------------------- /tools/certgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/certgen.sh -------------------------------------------------------------------------------- /tools/conf_migration_tool/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/conf_migration_tool/test.sh -------------------------------------------------------------------------------- /tools/conf_migration_tool/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/conf_migration_tool/tests/fixtures/REDEMPTION_VERSION_KO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cpp2ctypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/README.md -------------------------------------------------------------------------------- /tools/cpp2ctypes/autotest/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/autotest/enums.h -------------------------------------------------------------------------------- /tools/cpp2ctypes/autotest/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/autotest/enums.py -------------------------------------------------------------------------------- /tools/cpp2ctypes/autotest/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/autotest/funcs.h -------------------------------------------------------------------------------- /tools/cpp2ctypes/autotest/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/autotest/funcs.py -------------------------------------------------------------------------------- /tools/cpp2ctypes/autotest/pyclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/autotest/pyclass.h -------------------------------------------------------------------------------- /tools/cpp2ctypes/cpp2ctypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/cpp2ctypes.lua -------------------------------------------------------------------------------- /tools/cpp2ctypes/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/cpp2ctypes/test.sh -------------------------------------------------------------------------------- /tools/font_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/font_parser.py -------------------------------------------------------------------------------- /tools/freedrdp_capture_to_source.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/freedrdp_capture_to_source.pl -------------------------------------------------------------------------------- /tools/gcovr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/gcovr.sh -------------------------------------------------------------------------------- /tools/gen_keylayouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/gen_keylayouts/README.md -------------------------------------------------------------------------------- /tools/gen_keylayouts/gen_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/gen_keylayouts/gen_cpp.py -------------------------------------------------------------------------------- /tools/gen_keylayouts/gen_cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/gen_keylayouts/gen_cpp.sh -------------------------------------------------------------------------------- /tools/gitlab/gitlab-analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/gitlab/gitlab-analyze.sh -------------------------------------------------------------------------------- /tools/i18n/gen_catalog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/i18n/gen_catalog.sh -------------------------------------------------------------------------------- /tools/i18n/po/en/redemption.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/i18n/po/en/redemption.po -------------------------------------------------------------------------------- /tools/i18n/po/fr/redemption.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/i18n/po/fr/redemption.po -------------------------------------------------------------------------------- /tools/i18n/po/redemption.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/i18n/po/redemption.pot -------------------------------------------------------------------------------- /tools/i18n/xgettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/i18n/xgettext.py -------------------------------------------------------------------------------- /tools/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/jenkins.sh -------------------------------------------------------------------------------- /tools/log_siem/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/log_siem/extractor.py -------------------------------------------------------------------------------- /tools/log_siem/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/log_siem/sample.txt -------------------------------------------------------------------------------- /tools/log_siem/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/log_siem/update.sh -------------------------------------------------------------------------------- /tools/passthrough/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/passthrough/README.md -------------------------------------------------------------------------------- /tools/passthrough/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/passthrough/logger.py -------------------------------------------------------------------------------- /tools/passthrough/passthrough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/passthrough/passthrough.py -------------------------------------------------------------------------------- /tools/post-build-jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/post-build-jenkins -------------------------------------------------------------------------------- /tools/python-analyzer/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/python-analyzer/coverage.sh -------------------------------------------------------------------------------- /tools/python-analyzer/ruff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/python-analyzer/ruff.sh -------------------------------------------------------------------------------- /tools/rdpcert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/rdpcert -------------------------------------------------------------------------------- /tools/rsyslog.d/100-rdpproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/rsyslog.d/100-rdpproxy.conf -------------------------------------------------------------------------------- /tools/servercertgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/servercertgen.sh -------------------------------------------------------------------------------- /tools/sesman/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/README.rst -------------------------------------------------------------------------------- /tools/sesman/WABRDPAuthentifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/WABRDPAuthentifier -------------------------------------------------------------------------------- /tools/sesman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/__init__.py -------------------------------------------------------------------------------- /tools/sesman/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/logger.py -------------------------------------------------------------------------------- /tools/sesman/mypy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/mypy.sh -------------------------------------------------------------------------------- /tools/sesman/sesman.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/sesman.spec -------------------------------------------------------------------------------- /tools/sesman/sesmanworker/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/sesmanworker/engine.py -------------------------------------------------------------------------------- /tools/sesman/sesmanworker/sesman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/sesmanworker/sesman.py -------------------------------------------------------------------------------- /tools/sesman/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/tests/__init__.py -------------------------------------------------------------------------------- /tools/sesman/tests/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/sesman/tests/test_parsers.py -------------------------------------------------------------------------------- /tools/source_deps_cp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/source_deps_cp.sh -------------------------------------------------------------------------------- /tools/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/syslog/README.md -------------------------------------------------------------------------------- /tools/syslog/rdpproxy_color.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/syslog/rdpproxy_color.awk -------------------------------------------------------------------------------- /tools/syslog/split_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/syslog/split_log.py -------------------------------------------------------------------------------- /tools/tmalloc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/tmalloc/build.sh -------------------------------------------------------------------------------- /tools/tmalloc/tmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/tmalloc/tmalloc.cpp -------------------------------------------------------------------------------- /tools/transparentrule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/transparentrule.sh -------------------------------------------------------------------------------- /tools/web_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/tools/web_video.html -------------------------------------------------------------------------------- /veracode-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallix/redemption/HEAD/veracode-package.sh -------------------------------------------------------------------------------- /veracode.expmap: -------------------------------------------------------------------------------- 1 | {global:main;local:*;}; --------------------------------------------------------------------------------