summaryrefslogtreecommitdiffhomepage
path: root/runopts.h
diff options
context:
space:
mode:
Diffstat (limited to 'runopts.h')
-rw-r--r--runopts.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/runopts.h b/runopts.h
index d6e8917..e9d2363 100644
--- a/runopts.h
+++ b/runopts.h
@@ -37,7 +37,7 @@ typedef struct runopts {
int listen_fwd_all;
#endif
unsigned int recv_window;
- time_t keepalive_secs;
+ unsigned int keepalive_secs;
} runopts;
@@ -101,6 +101,7 @@ typedef struct cli_runopts {
char *remotehost;
char *remoteport;
+ char *own_user;
char *username;
char *cmd;
@@ -118,6 +119,14 @@ typedef struct cli_runopts {
struct TCPFwdList * localfwds;
#endif
+#ifdef ENABLE_CLI_NETCAT
+ char *netcat_host;
+ unsigned int netcat_port;
+#endif
+#ifdef ENABLE_CLI_PROXYCMD
+ char *proxycmd;
+#endif
+
} cli_runopts;
extern cli_runopts cli_opts;