Minor log improvement, updated TODO

This commit is contained in:
Michiel Broek 2003-09-13 21:32:00 +00:00
parent 7a9aaad934
commit 20375d7d66
3 changed files with 9 additions and 11 deletions

View File

@ -43,6 +43,7 @@ v0.37.7 09-Sep-2003
If doesn't do Multiple Batch mode anymore against binkp/1.1
mailers.
File resync during receive finally works.
In binkp we don't send a empty dataframe after a file anymore.
mbtask:
Added support for debug logfile. Dropped the debug switch for

11
TODO
View File

@ -109,20 +109,13 @@ mbfido:
N: Add statistic mail messages.
mbcico:
N: Upgrade binkp protocol to 1.1, that may solve the next two
issues as well.
N: See if it is possible with binkp protocol to resume aborted
transfers. Changes are under test now. Feedback needed!
N: Implement binkp resync when getting files. Transmit works.
Under test now!
N: Upgrade binkp protocol to 1.1.
N: With binkp, if the other node is a binkp/1.0 mailer without MB
mode and we did send a FREQ, a poll must be created after the
session to pickup the result of the FREQ.
N: Support binkp Argus freqs.
N: Support binkp Argus freqs (Radius too?).
mbfile:
L: Add a check to see if the magic filenames are (still) valid.

View File

@ -1389,7 +1389,7 @@ int binkp_batch(file_list *to_send)
/*
* Send empty dataframe, most binkp mailers need it to detect EOF.
*/
binkp_send_data(txbuf, 0);
// binkp_send_data(txbuf, 0);
/*
* calculate time needed and bytes transferred
@ -1466,7 +1466,11 @@ int binkp_batch(file_list *to_send)
if (strcasecmp(tmpg->remote, bp.gname) == 0) {
tmpg->state = NoState;
tmpg->offset = bp.goffset;
Syslog('+', "Remote wants %s again, offset %ld", bp.gname, bp.goffset);
if (bp.goffset) {
Syslog('+', "Remote wants %s for resync at offset %ld", bp.gname, bp.goffset);
} else {
Syslog('+', "Remote wants %s again", bp.gname);
}
bp.TxState = TxGetNextFile;
}
}