This commit is contained in:
John Wiseman 2023-08-14 17:08:51 +01:00
parent 0bdcbb4a69
commit 084ecb74f6
6 changed files with 8 additions and 5788 deletions

View File

@ -1180,6 +1180,10 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
// Fix processing of the Winlink API /account/exists response (82)
// Fix sending CTEXT to L4 connects to Node when FULL_CTEXT is not set
// Version 6.0.25.?
// Fix 64 bit compatibility problems in SCSTracker and UZ7HO drivers
#define CKernel
#include "Versions.h"

View File

@ -1426,7 +1426,7 @@ reinit:
buffptr = Q_REM(&TNC->PortRecord->UI_Q);
datalen = buffptr->LENGTH - 7;
datalen = buffptr->LENGTH - MSGHDDRLEN;
Buffer = &buffptr->DEST[0]; // Raw Frame
Buffer[datalen] = 0;

File diff suppressed because it is too large Load Diff

View File

@ -840,7 +840,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
Sock = TNCInfo[MasterPort[port]]->TCPSock;
MsgLen = buffptr->LENGTH - 6; // 7 Header, need extra Null
MsgLen = buffptr->LENGTH - (MSGHDDRLEN - 1); // Need extra Null
buffptr->LENGTH = 0; // Need a NULL on front
Buffer = &buffptr->DEST[0]; // Raw Frame
Buffer--; // Need to send an extra byte on front

File diff suppressed because it is too large Load Diff

View File

@ -10,8 +10,8 @@
#endif
#define KVers 6,0,24,1
#define KVerstring "6.0.24.1\0"
#define KVers 6,0,24,2
#define KVerstring "6.0.24.2\0"
#ifdef CKernel