Bumped to next development version
This commit is contained in:
parent
7663668592
commit
ff85c43f57
10
ChangeLog
10
ChangeLog
@ -1,12 +1,14 @@
|
|||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
|
|
||||||
v0.39.0 09-Oct-2003
|
v0.39.1 22-Oct-2003
|
||||||
|
|
||||||
|
|
||||||
|
v0.39.0 09-Oct-2003 - 22-Oct-2003
|
||||||
|
|
||||||
general:
|
general:
|
||||||
Added menu setup switches for doors: Singe user door and
|
Added menu setup switches for doors: Singe user door and
|
||||||
hidden from lists.
|
hidden from lists.
|
||||||
Added configure settings for zlib, disabled for endusers.
|
|
||||||
|
|
||||||
mbsebbs:
|
mbsebbs:
|
||||||
The whoson list displays the doorname if set in the menus.
|
The whoson list displays the doorname if set in the menus.
|
||||||
@ -27,6 +29,10 @@ v0.39.0 09-Oct-2003
|
|||||||
Changed signal handlers to better detect broken TCP links.
|
Changed signal handlers to better detect broken TCP links.
|
||||||
Added logging to show compressed bytes and switched to compress
|
Added logging to show compressed bytes and switched to compress
|
||||||
level 9 compression instead of 6.
|
level 9 compression instead of 6.
|
||||||
|
Prepared hydra for large compressed data blocks. In the next
|
||||||
|
developmement version we will actually start using these
|
||||||
|
large blocks, this change is to give all beta testers the
|
||||||
|
chance to upgrade.
|
||||||
|
|
||||||
lang:
|
lang:
|
||||||
Added language prompt 20.
|
Added language prompt 20.
|
||||||
|
3
TODO
3
TODO
@ -120,6 +120,9 @@ mbcico:
|
|||||||
U: Fix binkp file resume when mbcico silently dies.
|
U: Fix binkp file resume when mbcico silently dies.
|
||||||
|
|
||||||
mbfile:
|
mbfile:
|
||||||
|
U: With file move and file already exists, there is an error
|
||||||
|
cannot create symbolic link <name>, unknown error 4294968295.
|
||||||
|
|
||||||
L: Add a check to see if the magic filenames are (still) valid.
|
L: Add a check to see if the magic filenames are (still) valid.
|
||||||
|
|
||||||
L: Update <filespec> <area> <-touch>
|
L: Update <filespec> <area> <-touch>
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -1268,7 +1268,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="39"
|
MINOR="39"
|
||||||
REVISION="0"
|
REVISION="1"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"
|
||||||
|
@ -11,7 +11,7 @@ dnl After changeing the version number, run autoconf!
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="39"
|
MINOR="39"
|
||||||
REVISION="0"
|
REVISION="1"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"
|
||||||
|
@ -1064,10 +1064,11 @@ int hydra_batch(int role, file_list *to_send)
|
|||||||
txlen += 4;
|
txlen += 4;
|
||||||
hytxpkt(HPKT_DATA, txbuf, txlen);
|
hytxpkt(HPKT_DATA, txbuf, txlen);
|
||||||
#endif
|
#endif
|
||||||
|
// FIXME: here to decide in PLZ mode to use larger blocks.
|
||||||
if (goodbytes > goodneeded) {
|
if (goodbytes > goodneeded) {
|
||||||
blksize *= 2;
|
blksize *= 2;
|
||||||
if (blksize > H_MAXBLKLEN) {
|
if (blksize > H_UNCBLKLEN) {
|
||||||
blksize = H_MAXBLKLEN;
|
blksize = H_UNCBLKLEN;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -75,8 +75,13 @@
|
|||||||
#define XOFF ('S' - '@') /* Ctrl-S (^S) xmit-off character */
|
#define XOFF ('S' - '@') /* Ctrl-S (^S) xmit-off character */
|
||||||
#endif
|
#endif
|
||||||
#define H_DLE ('X' - '@') /* Ctrl-X (^X) HYDRA DataLinkEscape */
|
#define H_DLE ('X' - '@') /* Ctrl-X (^X) HYDRA DataLinkEscape */
|
||||||
|
#define H_UNCBLKLEN 2048 /* Max. uncompressed blocklen */
|
||||||
#define H_MINBLKLEN 64 /* Min. length of a HYDRA data block */
|
#define H_MINBLKLEN 64 /* Min. length of a HYDRA data block */
|
||||||
#define H_MAXBLKLEN 2048 /* Max. length of a HYDRA data block */
|
#define H_MAXBLKLEN 8192 /* Max. length of a HYDRA data block */
|
||||||
|
/* NB: official is 2048, here we use */
|
||||||
|
/* this to prepare for receive large */
|
||||||
|
/* compressed blocks. Uncompressed */
|
||||||
|
/* we still use 2048 maximum. */
|
||||||
#define H_OVERHEAD 8 /* Max. no. control bytes in a pkt */
|
#define H_OVERHEAD 8 /* Max. no. control bytes in a pkt */
|
||||||
#define H_MAXPKTLEN ((H_MAXBLKLEN + H_OVERHEAD + 5) * 3) /* Encoded pkt */
|
#define H_MAXPKTLEN ((H_MAXBLKLEN + H_OVERHEAD + 5) * 3) /* Encoded pkt */
|
||||||
#define H_BUFLEN (H_MAXPKTLEN + 16) /* Buffer sizes: max.enc.pkt + slack */
|
#define H_BUFLEN (H_MAXPKTLEN + 16) /* Buffer sizes: max.enc.pkt + slack */
|
||||||
|
Reference in New Issue
Block a user