Dan Fruehauf
Dan Fruehauf
Could not get this to compile with Intel C++ Compiler. It results in the following error: ``` better_enums.cpp(3): error: expression must have a constant value BETTER_ENUM(Word, int, Hello, World) ```...
`wait_strategy.h` should include `time.h` instead of `sys/time.h`. `sys/time.h` cannot be found on Windows platforms (Linux is OK).
Not going to create a PR for that, because it's too simple... `wait_strategy.h` uses `std::recursive_mutex`, but never includes ``. Adding `#include ` solves that problem.
* Allow SOCKS only connections (-D host:port, -D port) * Use dummy0 as interface * Fix bug in config validation, where only prefix of keys were compared Fixes #41
- Choose a saved password - Make sure the remote host does not exist in your `~/.ssh/known_hosts` - Connection fails as it tries to validate the hostname with `/root/.ssh/known_hosts`
Self explanatory. Currently only keys without pass phrases are supported.
If the destination machine is not in your known_hosts file, things would fail. Suggesting the following: - When saving the dialog file, ask the user if he wants to authorized...
When executing commands for new files that arrive, there is no limit to the number of `fork()` calls. Imagine the following scenario: - A thousand files land up more or...
On el9, SIOCDEVPRIVATE was backported to be used on kernel 5.14.x. Fix current condition that assumes this is present only on 5.15.0 and newer Fixes #74 #67