Files
FastSync/src/shared/transport_ssh.h
T
TapTap 30239c6f50
CI / lint (pull_request) Successful in 10s
CI / sanitizers (address) (pull_request) Successful in 14s
CI / sanitizers (undefined) (pull_request) Successful in 16s
CI / fuzz-build (pull_request) Successful in 15s
CI / coverage (pull_request) Successful in 9s
CI / valgrind (pull_request) Successful in 12s
CI / build-and-test (pull_request) Successful in 54s
feat: add --fastsync-server-path flag to configure remote server binary path
2026-07-21 18:13:21 +02:00

9 lines
173 B
C

#ifndef TRANSPORT_SSH_H
#define TRANSPORT_SSH_H
#include "transport_tcp.h"
Client* client_connect_ssh(const char* destination, int port, const char* server_path);
#endif