diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-12-04 21:32:48 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-12-04 21:32:48 +0900 |
commit | e1d14623f41eb82c5acb90c17ba5c62b7d798bbe (patch) | |
tree | 8b6ab42639c4d252c0b15e971f7da5075de83fe8 /src/ssh.h | |
parent | 3b794ab51b04cd82f84f5b820f57267695066d80 (diff) |
set TCP_NODELAY by default and introduce -N option to disable it
Diffstat (limited to 'src/ssh.h')
-rw-r--r-- | src/ssh.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13,6 +13,7 @@ struct ssh_opts { char *cipher; /* -c */ char *hmac; /* -M */ int compress; /* -C */ + int nodelay; /* -N */ int debuglevel; /* -v */ bool no_hostkey_check; /* -H */ |