Mercurial > dropbear
comparison CHANGES @ 989:73ea0dce9a57 pam
Merge up to date
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 23 Jan 2015 21:38:47 +0800 |
parents | 735511a4c761 |
children | d63b569a7c86 |
comparison
equal
deleted
inserted
replaced
925:bae0b34bc059 | 989:73ea0dce9a57 |
---|---|
1 2014.66 - Thursday 23 October 2014 | |
2 | |
3 - Use the same keepalive handling behaviour as OpenSSH. This will work better | |
4 with some SSH implementations that have different behaviour with unknown | |
5 message types. | |
6 | |
7 - Don't reply with SSH_MSG_UNIMPLEMENTED when we receive a reply to our own | |
8 keepalive message | |
9 | |
10 - Set $SSH_CLIENT to keep bash happy, patch from Ryan Cleere | |
11 | |
12 - Fix wtmp which broke since 2013.62, patch from Whoopie | |
13 | |
14 2014.65 - Friday 8 August 2014 | |
15 | |
16 - Fix 2014.64 regression, server session hang on exit with scp (and probably | |
17 others), thanks to NiLuJe for tracking it down | |
18 | |
19 - Fix 2014.64 regression, clock_gettime() error handling which broke on older | |
20 Linux kernels, reported by NiLuJe | |
21 | |
22 - Fix 2014.64 regression, writev() could occassionally fail with EAGAIN which | |
23 wasn't caught | |
24 | |
25 - Avoid error message when trying to set QoS on proxycommand or multihop pipes | |
26 | |
27 - Use /usr/bin/xauth, thanks to Mike Frysinger | |
28 | |
29 - Don't exit the client if the local user entry can't be found, thanks to iquaba | |
30 | |
31 2014.64 - Sunday 27 July 2014 | |
32 | |
33 - Fix compiling with ECDSA and DSS disabled | |
34 | |
35 - Don't exit abruptly if too many outgoing packets are queued for writev(). Patch | |
36 thanks to Ronny Meeus | |
37 | |
38 - The -K keepalive option now behaves more like OpenSSH's "ServerAliveInterval". | |
39 If no response is received after 3 keepalives then the session is terminated. This | |
40 will close connections faster than waiting for a TCP timeout. | |
41 | |
42 - Rework TCP priority setting. New settings are | |
43 if (connecting || ptys || x11) tos = LOWDELAY | |
44 else if (tcp_forwards) tos = 0 | |
45 else tos = BULK | |
46 Thanks to Catalin Patulea for the suggestion. | |
47 | |
48 - Improve handling of many concurrent new TCP forwarded connections, should now | |
49 be able to handle as many as MAX_CHANNELS. Thanks to Eduardo Silva for reporting | |
50 and investigating it. | |
51 | |
52 - Make sure that exit messages from the client are printed, regression in 2013.57 | |
53 | |
54 - Use monotonic clock where available, timeouts won't be affected by system time | |
55 changes | |
56 | |
57 - Add -V for version | |
58 | |
1 2014.63 - Wednesday 19 February 2014 | 59 2014.63 - Wednesday 19 February 2014 |
2 | 60 |
3 - Fix ~. to terminate a client interactive session after waking a laptop | 61 - Fix ~. to terminate a client interactive session after waking a laptop |
4 from sleep. | 62 from sleep. |
5 | 63 |