thoughts
This commit is contained in:
parent
3f347f5a77
commit
a3f48c7798
|
@ -42,6 +42,9 @@ Const
|
|||
M_SKIP = 10;
|
||||
M_DATA = 255;
|
||||
|
||||
// needs to be 32k... can't remember what the problem was that made me
|
||||
// limit it temporarily to 30k
|
||||
|
||||
BinkPMaxBufferSize = 30 * 1024;
|
||||
TempFileTime = 1363944820;
|
||||
|
||||
|
@ -193,6 +196,12 @@ Var
|
|||
Begin
|
||||
// Scan all FLO files in outbound directory, and PRUNE them all.
|
||||
|
||||
// possible issue if multiple BINKP connections are going. we need
|
||||
// to revamp this to perform appropriate file locking and waiting.
|
||||
// also should be moved to mis_common since FTN-FTP will also perform
|
||||
// the same procedure.
|
||||
// could also perform a critical section as a cheesy way to do this.
|
||||
|
||||
FindFirst (SetOutPath + '*.?lo', AnyFile, DirInfo);
|
||||
|
||||
While DosError = 0 Do Begin
|
||||
|
@ -525,8 +534,6 @@ Begin
|
|||
End;
|
||||
End;
|
||||
|
||||
// DoFrameCheck;
|
||||
|
||||
Case TxState of
|
||||
TxGetEOF : Begin
|
||||
If HaveHeader Then
|
||||
|
|
Loading…
Reference in New Issue