Merge all 5 batch PRs: security, CLI features, protocol, performance, tests/docs #143

Merged
TapTap merged 23 commits from merge-all-v2 into main 2026-07-29 18:09:05 +02:00
Showing only changes of commit d21f6c8be9 - Show all commits
+2
View File
@@ -3,11 +3,13 @@
#include "transport_ssh.h"
static void test_ssh_connect_invalid_dest_no_colon() {
/* cppcheck-suppress constVariablePointer */
Client* c = client_connect_ssh("/path/to/dest", 22);
EXPECT_NULL(c);
}
static void test_ssh_connect_invalid_dest_empty() {
/* cppcheck-suppress constVariablePointer */
Client* c = client_connect_ssh("", 22);
EXPECT_NULL(c);
}