Mercurial > dropbear
diff common-session.c @ 448:9c61e7af0156
Rearrange the channel buffer sizes into three neat use-editable values in
options.h. Increasing RECV_MAX_WINDOW gives big network performance
increases - even with the present buffers (which haven't changed) it
performs a lot better.
Next step is to make the window size a cmdline option.
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 24 Jul 2007 15:40:23 +0000 |
parents | a01c0c8e543a |
children | 4cab61369879 |
line wrap: on
line diff
--- a/common-session.c Thu Jul 19 15:54:18 2007 +0000 +++ b/common-session.c Tue Jul 24 15:40:23 2007 +0000 @@ -69,7 +69,7 @@ kexfirstinitialise(); /* initialise the kex state */ - ses.writepayload = buf_new(MAX_TRANS_PAYLOAD_LEN); + ses.writepayload = buf_new(TRANS_MAX_PAYLOAD_LEN); ses.transseq = 0; ses.readbuf = NULL;