summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2004-09-14 13:22:32 +0000
committerMatt Johnston <matt@ucc.asn.au>2004-09-14 13:22:32 +0000
commitc1f061f1d10320c4d99c465e81804e53a23e98f7 (patch)
tree539ebc86ef8aedf8ad929eb8d925ef74c9fa9d4f
parentbcb74f0a47472fbdc8bf9243e404b47976ad3a1d (diff)
downloaddropbear-c1f061f1d10320c4d99c465e81804e53a23e98f7.tar.gz
0.44test4 probably
also bumped the channel recv window sizing
-rw-r--r--CHANGES19
-rw-r--r--channel.h4
-rw-r--r--debian/changelog6
-rw-r--r--options.h2
4 files changed, 28 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 01ca4bf..07e931a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,22 @@
+0.44test4 - Tue Sept 14 21:15:54 +0800
+
+- Fix inetd mode so it actually loads the hostkeys (oops)
+
+- Changed DROPBEAR_DEFPORT properly everywhere
+
+- Fix a small memory leak in the auth code
+
+- WCOREDUMP is only used on systems which support it (ie not cygwin or AIX)
+
+- Check (and fail for) cases when we can't negotiate algorithms with the
+ remote side successfully (rather than bombing out ungracefully)
+
+- Handle authorized_keys files without a terminating newline
+
+- Fiddle the channel receive window size for possibly better performance
+
+- Added in the PAM authentication code (finally! thanks to Martin Carlsson)
+
0.44test3 - Fri Aug 27 22:20:54 +0800
- Fixed a bunch of warnings.
diff --git a/channel.h b/channel.h
index 8a494c7..535960e 100644
--- a/channel.h
+++ b/channel.h
@@ -50,8 +50,8 @@
#define CHAN_EXTEND_SIZE 3 /* how many extra slots to add when we need more */
-#define RECV_MAXWINDOW 4000 /* tweak */
-#define RECV_WINDOWEXTEND 500 /* We send a "window extend" every
+#define RECV_MAXWINDOW 8000 /* tweak */
+#define RECV_WINDOWEXTEND 1000 /* We send a "window extend" every
RECV_WINDOWEXTEND bytes */
#define RECV_MAXPACKET RECV_MAXWINDOW /* tweak */
diff --git a/debian/changelog b/debian/changelog
index c728227..279290c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dropbear (0.44test4-1) unstable; urgency=medium
+
+ * New upstream beta, various useful fixes.
+
+ -- Matt Johnston <matt@ucc.asn.au> Tues, 14 September 2004 21:20:00 +0800
+
dropbear (0.44test3-1) unstable; urgency=medium
* New upstream beta, various useful fixes.
diff --git a/options.h b/options.h
index 02edbf2..533d71e 100644
--- a/options.h
+++ b/options.h
@@ -183,7 +183,7 @@ etc) slower (perhaps by 50%). Recommended for most small systems. */
*******************************************************************/
#ifndef DROPBEAR_VERSION
-#define DROPBEAR_VERSION "0.44rez1"
+#define DROPBEAR_VERSION "0.44test4"
#endif
#define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION