diff options
Diffstat (limited to 'runopts.h')
-rw-r--r-- | runopts.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -36,6 +36,8 @@ typedef struct runopts { #if defined(ENABLE_SVR_REMOTETCPFWD) || defined(ENABLE_CLI_LOCALTCPFWD) int listen_fwd_all; #endif + unsigned int recv_window; + time_t keepalive_secs; } runopts; @@ -55,6 +57,7 @@ typedef struct svr_runopts { /* ports is an array of the portcount listening ports */ char *ports[DROPBEAR_MAX_PORTS]; unsigned int portcount; + char *addresses[DROPBEAR_MAX_PORTS]; int inetdmode; @@ -83,6 +86,7 @@ typedef struct svr_runopts { sign_key *hostkey; buffer * banner; + char * pidfile; } svr_runopts; @@ -101,6 +105,9 @@ typedef struct cli_runopts { char *cmd; int wantpty; + int always_accept_key; + int no_cmd; + int backgrounded; #ifdef ENABLE_CLI_PUBKEY_AUTH struct SignKeyList *privkeys; /* Keys to use for public-key auth */ #endif |