Matthew Cather
Matthew Cather
Keyboard-interactive events can have multiple steps. Tweak the existing `kbd_callback` to massage prompts into a format that an end user can handle from python. New public method `userauth_keyboardinteractive_callback` added to...
**Describe the bug** According to the documentation of `send_interactive` (specifically in sync_driver.py) ``` interaction_complete_patterns: list of patterns, that if seen, indicate the interactive "session" has ended and we should exit...
* Version of iperf3 (or development branch, such as `master` or `3.1-STABLE`) to which this pull request applies: 3.16 * Issues fixed (if any): uninitialized buffer * Brief description of...
# Context * Version of iperf3: 3.16 * Hardware: N/A * Operating system (and distribution, if any): 6.5.0-26-generic # 26~22.04.1-Ubuntu * Other relevant information (for example, non-default compilers, libraries, cross-compiling,...
_PLEASE NOTE the following text from the iperf3 license. Submitting a pull request to the iperf3 repository constitutes "[making] Enhancements available...publicly":_ ``` You are under no obligation whatsoever to provide...
Mostly just freeing strings and closing files. None of these are too severe. Changes should be fairly self explanatory but please ask if something is not clear. I have my...
Because `file_read` allocates memory, it should be free-ed. Currently, attempting to do so will cause a compiler warning since `free` does not take `const` qualified pointer (because we are modifying...
No need to redraw if there has not been any events. Poll for events about every 100 ms. Drops utilization from around 25% to less than 0. Also swap `-ffunction-sections...