Compare commits
32 Commits
hibbian/la
...
debian/boo
Author | SHA1 | Date |
---|---|---|
Hibby | 2608273f0a | |
Hibby | 64921154af | |
Hibby | 313013b516 | |
Hibby | 8da3573e9d | |
Hibby | 0bf76220d7 | |
Hibby | 7efc00ebc4 | |
Hibby | 5fff8496a8 | |
Hibby | 7080457a85 | |
Hibby | b84a355258 | |
Hibby | 85e1083f18 | |
Hibby | f4f7f29444 | |
Hibby | 6cb7dff699 | |
Hibby | 7e9fc368be | |
Hibby | a1e823d377 | |
Hibby | e65a668cec | |
Hibby | 68109c7b0b | |
Hibby | d301b59a1e | |
Dave Hibberd | 3000799ed5 | |
Dave Hibberd | 956fbd523d | |
Dave Hibberd | 5315f3b733 | |
Dave Hibberd | 645db7ce3d | |
Dave Hibberd | 1ff37aad01 | |
Dave Hibberd | 7890635e04 | |
Dave Hibberd | 46d849892b | |
Dave Hibberd | 3c4fd182da | |
Dave Hibberd | 63e373575e | |
Dave Hibberd | b6abe3fc9e | |
Dave Hibberd | 18fff38b7b | |
Dave Hibberd | e3e857453b | |
Dave Hibberd | d4e4b99cb7 | |
Dave Hibberd | 75207342a3 | |
Dave Hibberd | ceefa27ba7 |
Binary file not shown.
Binary file not shown.
2
6pack.c
2
6pack.c
|
@ -970,7 +970,7 @@ ok:
|
||||||
UCHAR * data = &buffptr->Data[0];
|
UCHAR * data = &buffptr->Data[0];
|
||||||
STREAM->FramesQueued--;
|
STREAM->FramesQueued--;
|
||||||
txlen = (int)buffptr->Len;
|
txlen = (int)buffptr->Len;
|
||||||
STREAM->bytesTXed += txlen;
|
STREAM->BytesTXed += txlen;
|
||||||
|
|
||||||
bytes=SerialSendData(TNC, data, txlen);
|
bytes=SerialSendData(TNC, data, txlen);
|
||||||
WritetoTrace(TNC, data, txlen);
|
WritetoTrace(TNC, data, txlen);
|
||||||
|
|
15
AEAPactor.c
15
AEAPactor.c
|
@ -292,7 +292,8 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
{
|
{
|
||||||
// Send Error Response
|
// Send Error Response
|
||||||
|
|
||||||
buffptr->Len = sprintf(buffptr->Data, "No Connection to PACTOR TNC\r");
|
buffptr->Len = 36;
|
||||||
|
memcpy(buffptr->Data, "No Connection to PACTOR TNC\r", 36);
|
||||||
|
|
||||||
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
||||||
|
|
||||||
|
@ -811,7 +812,7 @@ VOID AEAPoll(int Port)
|
||||||
{
|
{
|
||||||
// Limit amount in TX
|
// Limit amount in TX
|
||||||
|
|
||||||
if (TNC->Streams[0].bytesTXed - TNC->Streams[0].BytesAcked > 200)
|
if (TNC->Streams[0].BytesTXed - TNC->Streams[0].BytesAcked > 200)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// If in IRS state for too long, force turnround
|
// If in IRS state for too long, force turnround
|
||||||
|
@ -876,8 +877,8 @@ VOID AEAPoll(int Port)
|
||||||
|
|
||||||
EncodeAndSend(TNC, TXMsg, datalen + 1);
|
EncodeAndSend(TNC, TXMsg, datalen + 1);
|
||||||
ReleaseBuffer(buffptr);
|
ReleaseBuffer(buffptr);
|
||||||
TNC->Streams[Stream].bytesTXed += datalen;
|
TNC->Streams[Stream].BytesTXed += datalen;
|
||||||
Debugprintf("Stream %d Sending %d, BytesTXED now %d", Stream, datalen, TNC->Streams[Stream].bytesTXed);
|
Debugprintf("Stream %d Sending %d, BytesTXED now %d", Stream, datalen, TNC->Streams[Stream].BytesTXed);
|
||||||
TNC->Timeout = 0;
|
TNC->Timeout = 0;
|
||||||
TNC->DataBusy = TRUE;
|
TNC->DataBusy = TRUE;
|
||||||
|
|
||||||
|
@ -1211,7 +1212,7 @@ static VOID ProcessAEAPacket(struct TNCINFO * TNC, UCHAR * Msg, size_t Len)
|
||||||
// If nothing more to send, turn round link
|
// If nothing more to send, turn round link
|
||||||
|
|
||||||
if ((TNC->Streams[0].BPQtoPACTOR_Q == 0) && TNC->NeedTurnRound &&
|
if ((TNC->Streams[0].BPQtoPACTOR_Q == 0) && TNC->NeedTurnRound &&
|
||||||
(TNC->Streams[0].BytesAcked >= TNC->Streams[0].bytesTXed)) // Nothing following and all acked
|
(TNC->Streams[0].BytesAcked >= TNC->Streams[0].BytesTXed)) // Nothing following and all acked
|
||||||
{
|
{
|
||||||
Debugprintf("AEA Sent = Acked - sending Turnround");
|
Debugprintf("AEA Sent = Acked - sending Turnround");
|
||||||
|
|
||||||
|
@ -1246,7 +1247,7 @@ static VOID ProcessAEAPacket(struct TNCINFO * TNC, UCHAR * Msg, size_t Len)
|
||||||
Len--; // Remove Header
|
Len--; // Remove Header
|
||||||
|
|
||||||
buffptr->Len = Len; // Length
|
buffptr->Len = Len; // Length
|
||||||
TNC->Streams[Stream].bytesRXed += (int)Len;
|
TNC->Streams[Stream].BytesRXed += (int)Len;
|
||||||
memcpy(&buffptr->Data[0], Buffer, Len);
|
memcpy(&buffptr->Data[0], Buffer, Len);
|
||||||
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
||||||
|
|
||||||
|
@ -1417,7 +1418,7 @@ static VOID ProcessAEAPacket(struct TNCINFO * TNC, UCHAR * Msg, size_t Len)
|
||||||
Buffer[Len-2] = 0;
|
Buffer[Len-2] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
TNC->Streams[Stream].bytesRXed = TNC->Streams[Stream].bytesTXed = TNC->Streams[Stream].BytesAcked = 0;
|
TNC->Streams[Stream].BytesRXed = TNC->Streams[Stream].BytesTXed = TNC->Streams[Stream].BytesAcked = 0;
|
||||||
TNC->Streams[Stream].ConnectTime = time(NULL);
|
TNC->Streams[Stream].ConnectTime = time(NULL);
|
||||||
|
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
|
|
148
AGWAPI.c
148
AGWAPI.c
|
@ -36,14 +36,14 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
|
|
||||||
struct AGWHeader
|
struct AGWHeader
|
||||||
{
|
{
|
||||||
unsigned int Port;
|
int Port;
|
||||||
unsigned char DataKind;
|
unsigned char DataKind;
|
||||||
unsigned char filler2;
|
unsigned char filler2;
|
||||||
unsigned char PID;
|
unsigned char PID;
|
||||||
unsigned char filler3;
|
unsigned char filler3;
|
||||||
unsigned char callfrom[10];
|
unsigned char callfrom[10];
|
||||||
unsigned char callto[10];
|
unsigned char callto[10];
|
||||||
unsigned int DataLength;
|
int DataLength;
|
||||||
int reserved;
|
int reserved;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@ int DataSocket_Write(struct AGWSocketConnectionInfo * sockptr, SOCKET sock);
|
||||||
int AGWGetSessionKey(char * key, struct AGWSocketConnectionInfo * sockptr);
|
int AGWGetSessionKey(char * key, struct AGWSocketConnectionInfo * sockptr);
|
||||||
int ProcessAGWCommand(struct AGWSocketConnectionInfo * sockptr);
|
int ProcessAGWCommand(struct AGWSocketConnectionInfo * sockptr);
|
||||||
int SendDataToAppl(int Stream, byte * Buffer, int Length);
|
int SendDataToAppl(int Stream, byte * Buffer, int Length);
|
||||||
int InternalAGWDecodeFrame(char * msg, char * buffer, time_t Stamp, int * FrameType, int useLocalTime, int doNodes);
|
int InternalAGWDecodeFrame(char * msg, char * buffer, int Stamp, int * FrameType, int useLocalTime, int doNodes);
|
||||||
int AGWDataSocket_Disconnect( struct AGWSocketConnectionInfo * sockptr);
|
int AGWDataSocket_Disconnect( struct AGWSocketConnectionInfo * sockptr);
|
||||||
int SendRawPacket(struct AGWSocketConnectionInfo * sockptr, char *txmsg, int Length);
|
int SendRawPacket(struct AGWSocketConnectionInfo * sockptr, char *txmsg, int Length);
|
||||||
int ShowApps();
|
int ShowApps();
|
||||||
|
@ -402,7 +402,7 @@ int SetUpHostSessions()
|
||||||
extern struct DATAMESSAGE * REPLYBUFFER;
|
extern struct DATAMESSAGE * REPLYBUFFER;
|
||||||
extern BOOL AGWActive;
|
extern BOOL AGWActive;
|
||||||
|
|
||||||
VOID SHOWAGW(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SHOWAGW(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY AGW Session Status
|
// DISPLAY AGW Session Status
|
||||||
|
|
||||||
|
@ -563,28 +563,10 @@ int AGWConnected(struct BPQConnectionInfo * Con, int Stream)
|
||||||
(memcmp(sockptr->CallSign1, ApplCall, 10) == 0) || (memcmp(sockptr->CallSign2, ApplCall, 10) == 0))
|
(memcmp(sockptr->CallSign1, ApplCall, 10) == 0) || (memcmp(sockptr->CallSign2, ApplCall, 10) == 0))
|
||||||
{
|
{
|
||||||
// Create Key
|
// Create Key
|
||||||
|
|
||||||
char callsign[10];
|
|
||||||
int port;
|
|
||||||
int sesstype;
|
|
||||||
int paclen;
|
|
||||||
int maxframe;
|
|
||||||
int l4window;
|
|
||||||
|
|
||||||
|
|
||||||
keyptr=(byte *)&Con->CallKey;
|
keyptr=(byte *)&Con->CallKey;
|
||||||
|
|
||||||
// Try using the BPQ Port Number if a L2 connect, first free port number if not
|
*(keyptr++)='1';
|
||||||
|
|
||||||
GetConnectionInfo(Stream, callsign,
|
|
||||||
&port, &sesstype, &paclen,
|
|
||||||
&maxframe, &l4window);
|
|
||||||
|
|
||||||
|
|
||||||
if (port == 0)
|
|
||||||
port = 64;
|
|
||||||
|
|
||||||
*(keyptr++)='0' + port;
|
|
||||||
memcpy(keyptr, ApplCall, 10);
|
memcpy(keyptr, ApplCall, 10);
|
||||||
keyptr+=10;
|
keyptr+=10;
|
||||||
memcpy(keyptr,ConnectingCall, 10);
|
memcpy(keyptr,ConnectingCall, 10);
|
||||||
|
@ -704,9 +686,8 @@ int AGWDoMonitorData()
|
||||||
struct AGWSocketConnectionInfo * sockptr;
|
struct AGWSocketConnectionInfo * sockptr;
|
||||||
byte AGWBuffer[1000];
|
byte AGWBuffer[1000];
|
||||||
int n;
|
int n;
|
||||||
int Frametype;
|
int Stamp, Frametype;
|
||||||
BOOL RXFlag;
|
BOOL RXFlag;
|
||||||
time_t Stamp;
|
|
||||||
|
|
||||||
// Look for Monitor Data
|
// Look for Monitor Data
|
||||||
|
|
||||||
|
@ -727,7 +708,7 @@ int AGWDoMonitorData()
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Stamp = monbuff->Timestamp;
|
Stamp = (UINT)monbuff->Timestamp;
|
||||||
|
|
||||||
memcpy(Buffer, monbuff, RawLen);
|
memcpy(Buffer, monbuff, RawLen);
|
||||||
|
|
||||||
|
@ -1017,7 +998,6 @@ int AGWDataSocket_Read(struct AGWSocketConnectionInfo * sockptr, SOCKET sock)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int DataLength;
|
int DataLength;
|
||||||
struct AGWHeader * AGW = &sockptr->AGWRXHeader;
|
|
||||||
|
|
||||||
ioctlsocket(sock,FIONREAD,&DataLength);
|
ioctlsocket(sock,FIONREAD,&DataLength);
|
||||||
|
|
||||||
|
@ -1029,83 +1009,18 @@ int AGWDataSocket_Read(struct AGWSocketConnectionInfo * sockptr, SOCKET sock)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DataLength < 36) // A header
|
|
||||||
{
|
|
||||||
// If we don't get a header within a few ms assume a rogue connection and close it
|
|
||||||
|
|
||||||
int n = 50;
|
|
||||||
|
|
||||||
while (n--)
|
|
||||||
{
|
|
||||||
Sleep(10);
|
|
||||||
ioctlsocket(sock,FIONREAD,&DataLength);
|
|
||||||
|
|
||||||
if (DataLength >= 36)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (n < 1)
|
|
||||||
{
|
|
||||||
Debugprintf("Corrupt AGW Packet Received");
|
|
||||||
AGWDataSocket_Disconnect(sockptr);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Have a header
|
|
||||||
|
|
||||||
i=recv(sock,(char *)&sockptr->AGWRXHeader, 36, 0);
|
|
||||||
|
|
||||||
if (i == SOCKET_ERROR)
|
|
||||||
{
|
|
||||||
i=WSAGetLastError();
|
|
||||||
AGWDataSocket_Disconnect(sockptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
sockptr->MsgDataLength = sockptr->AGWRXHeader.DataLength;
|
|
||||||
|
|
||||||
// Validate packet to protect against accidental (or malicious!) connects from a non-agw application
|
|
||||||
|
|
||||||
if (AGW->Port > 64 || AGW->filler2 != 0 || AGW->filler3 != 0 || AGW->DataLength > 400)
|
|
||||||
{
|
|
||||||
Debugprintf("Corrupt AGW Packet Received");
|
|
||||||
AGWDataSocket_Disconnect(sockptr);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sockptr->MsgDataLength == 0)
|
|
||||||
ProcessAGWCommand (sockptr);
|
|
||||||
else
|
|
||||||
sockptr->GotHeader = TRUE; // Wait for data
|
|
||||||
|
|
||||||
ioctlsocket(sock,FIONREAD,&DataLength); // See if more data
|
|
||||||
|
|
||||||
if (sockptr->GotHeader)
|
if (sockptr->GotHeader)
|
||||||
{
|
{
|
||||||
// Received a header, without sufficient data bytes
|
// Received a header, without sufficient data bytes
|
||||||
|
|
||||||
if (DataLength < sockptr->MsgDataLength)
|
if (DataLength < sockptr->MsgDataLength)
|
||||||
{
|
{
|
||||||
// Fiddle - seem to be problems somtimes with un-Neagled hosts so wait a few ms
|
// Fiddle - seem to be problems somtimes with un-Neagled hosts
|
||||||
// if we don't get a full packet assume a rogue connection and close it
|
|
||||||
|
Sleep(500);
|
||||||
|
|
||||||
int n = 50;
|
ioctlsocket(sock,FIONREAD,&DataLength);
|
||||||
|
|
||||||
while (n--)
|
|
||||||
{
|
|
||||||
Sleep(10);
|
|
||||||
ioctlsocket(sock,FIONREAD,&DataLength);
|
|
||||||
|
|
||||||
if (DataLength >= sockptr->MsgDataLength)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (n < 1)
|
|
||||||
{
|
|
||||||
Debugprintf("Corrupt AGW Packet Received");
|
|
||||||
AGWDataSocket_Disconnect(sockptr);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DataLength >= sockptr->MsgDataLength)
|
if (DataLength >= sockptr->MsgDataLength)
|
||||||
|
@ -1118,9 +1033,48 @@ int AGWDataSocket_Read(struct AGWSocketConnectionInfo * sockptr, SOCKET sock)
|
||||||
|
|
||||||
ProcessAGWCommand (sockptr);
|
ProcessAGWCommand (sockptr);
|
||||||
free(sockptr->MsgData);
|
free(sockptr->MsgData);
|
||||||
|
|
||||||
sockptr->GotHeader = FALSE;
|
sockptr->GotHeader = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Not Enough Data - wait
|
||||||
|
|
||||||
}
|
}
|
||||||
|
else // Not got header
|
||||||
|
{
|
||||||
|
if (DataLength > 35)// A header
|
||||||
|
{
|
||||||
|
i=recv(sock,(char *)&sockptr->AGWRXHeader, 36, 0);
|
||||||
|
|
||||||
|
if (i == SOCKET_ERROR)
|
||||||
|
{
|
||||||
|
i=WSAGetLastError();
|
||||||
|
|
||||||
|
AGWDataSocket_Disconnect(sockptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
sockptr->MsgDataLength = sockptr->AGWRXHeader.DataLength;
|
||||||
|
|
||||||
|
if (sockptr->MsgDataLength > 500)
|
||||||
|
OutputDebugString("Corrupt AGW message");
|
||||||
|
|
||||||
|
|
||||||
|
if (sockptr->MsgDataLength == 0)
|
||||||
|
{
|
||||||
|
ProcessAGWCommand (sockptr);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sockptr->GotHeader = TRUE; // Wait for data
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// not got 36 bytes
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -61,6 +61,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
|
|
||||||
#define NODES_SIG 0xFF
|
#define NODES_SIG 0xFF
|
||||||
|
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
UCHAR * DisplayINP3RIF(UCHAR * ptr1, UCHAR * ptr2, int msglen);
|
UCHAR * DisplayINP3RIF(UCHAR * ptr1, UCHAR * ptr2, int msglen);
|
||||||
|
|
||||||
static UCHAR * DISPLAY_NETROM(MESSAGE * ADJBUFFER, UCHAR * Output, int MsgLen, int DoNodes);
|
static UCHAR * DISPLAY_NETROM(MESSAGE * ADJBUFFER, UCHAR * Output, int MsgLen, int DoNodes);
|
||||||
|
@ -68,7 +69,7 @@ static UCHAR * DISPLAYIPDATAGRAM(IPMSG * IP, UCHAR * Output, int MsgLen);
|
||||||
static UCHAR * DISPLAYARPDATAGRAM(UCHAR * Datagram, UCHAR * Output);
|
static UCHAR * DISPLAYARPDATAGRAM(UCHAR * Datagram, UCHAR * Output);
|
||||||
|
|
||||||
|
|
||||||
int InternalAGWDecodeFrame(MESSAGE * msg, char * buffer, time_t Stamp, int * FrameType, int useLocalTime, int DoNodes)
|
int InternalAGWDecodeFrame(MESSAGE * msg, char * buffer, int Stamp, int * FrameType, int useLocalTime, int DoNodes)
|
||||||
{
|
{
|
||||||
UCHAR * ptr;
|
UCHAR * ptr;
|
||||||
int n;
|
int n;
|
||||||
|
@ -364,7 +365,7 @@ int InternalAGWDecodeFrame(MESSAGE * msg, char * buffer, time_t Stamp, int * Fra
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Output == NULL)
|
if (Output == NULL)
|
||||||
return 0;
|
return NULL;
|
||||||
|
|
||||||
if (Output[-1] != 13)
|
if (Output[-1] != 13)
|
||||||
Output += sprintf((char *)Output, "\r");
|
Output += sprintf((char *)Output, "\r");
|
||||||
|
|
|
@ -832,7 +832,6 @@ void SaveNavAidDataBase()
|
||||||
char FN[256];
|
char FN[256];
|
||||||
struct NAVAIDRECORD * navptr;
|
struct NAVAIDRECORD * navptr;
|
||||||
|
|
||||||
|
|
||||||
if (BPQDirectory[0] == 0)
|
if (BPQDirectory[0] == 0)
|
||||||
{
|
{
|
||||||
strcpy(FN, "AIS_NavAids.txt");
|
strcpy(FN, "AIS_NavAids.txt");
|
||||||
|
@ -2373,8 +2372,6 @@ void ProcessAISNavAidMessage()
|
||||||
NavAidCount++;
|
NavAidCount++;
|
||||||
|
|
||||||
ProcessAISNavAidMessage();
|
ProcessAISNavAidMessage();
|
||||||
NavAidDBChanged = 1;
|
|
||||||
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
21
APRSCode.c
21
APRSCode.c
|
@ -22,6 +22,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
// First Version, November 2011
|
// First Version, November 2011
|
||||||
|
|
||||||
#pragma data_seg("_BPQDATA")
|
#pragma data_seg("_BPQDATA")
|
||||||
|
|
||||||
#define _CRT_SECURE_NO_DEPRECATE
|
#define _CRT_SECURE_NO_DEPRECATE
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -62,6 +63,7 @@ VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
VOID __cdecl Consoleprintf(const char * format, ...);
|
VOID __cdecl Consoleprintf(const char * format, ...);
|
||||||
BOOL APIENTRY Send_AX(PMESSAGE Block, DWORD Len, UCHAR Port);
|
BOOL APIENTRY Send_AX(PMESSAGE Block, DWORD Len, UCHAR Port);
|
||||||
VOID Send_AX_Datagram(PDIGIMESSAGE Block, DWORD Len, UCHAR Port);
|
VOID Send_AX_Datagram(PDIGIMESSAGE Block, DWORD Len, UCHAR Port);
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
int APRSDecodeFrame(char * msg, char * buffer, time_t Stamp, uint64_t Mask); // Unsemaphored DecodeFrame
|
int APRSDecodeFrame(char * msg, char * buffer, time_t Stamp, uint64_t Mask); // Unsemaphored DecodeFrame
|
||||||
APRSHEARDRECORD * UpdateHeard(UCHAR * Call, int Port);
|
APRSHEARDRECORD * UpdateHeard(UCHAR * Call, int Port);
|
||||||
BOOL CheckforDups(char * Call, char * Msg, int Len);
|
BOOL CheckforDups(char * Call, char * Msg, int Len);
|
||||||
|
@ -86,7 +88,7 @@ double myDistance(double laa, double loa, BOOL KM);
|
||||||
struct STATIONRECORD * FindStation(char * Call, BOOL AddIfNotFound);
|
struct STATIONRECORD * FindStation(char * Call, BOOL AddIfNotFound);
|
||||||
int DecodeAPRSPayload(char * Payload, struct STATIONRECORD * Station);
|
int DecodeAPRSPayload(char * Payload, struct STATIONRECORD * Station);
|
||||||
BOOL KillOldTNC(char * Path);
|
BOOL KillOldTNC(char * Path);
|
||||||
|
int FromLOC(char * Locator, double * pLat, double * pLon);
|
||||||
BOOL ToLOC(double Lat, double Lon , char * Locator);
|
BOOL ToLOC(double Lat, double Lon , char * Locator);
|
||||||
BOOL InternalSendAPRSMessage(char * Text, char * Call);
|
BOOL InternalSendAPRSMessage(char * Text, char * Call);
|
||||||
void UndoTransparency(char * input);
|
void UndoTransparency(char * input);
|
||||||
|
@ -102,7 +104,6 @@ void ClearSavedMessages();
|
||||||
void GetSavedAPRSMessages();
|
void GetSavedAPRSMessages();
|
||||||
static VOID GPSDConnect(void * unused);
|
static VOID GPSDConnect(void * unused);
|
||||||
int CanPortDigi(int Port);
|
int CanPortDigi(int Port);
|
||||||
int FromLOC(char * Locator, double * pLat, double * pLon);
|
|
||||||
|
|
||||||
extern int SemHeldByAPI;
|
extern int SemHeldByAPI;
|
||||||
extern int APRSMONDECODE();
|
extern int APRSMONDECODE();
|
||||||
|
@ -347,7 +348,7 @@ APRSHEARDRECORD MHTABLE[MAXHEARD] = {0};
|
||||||
|
|
||||||
APRSHEARDRECORD * MHDATA = &MHTABLE[0];
|
APRSHEARDRECORD * MHDATA = &MHTABLE[0];
|
||||||
|
|
||||||
static SOCKET sock = 0;
|
static SOCKET sock = (SOCKET) NULL;
|
||||||
|
|
||||||
//Duplicate suppression Code
|
//Duplicate suppression Code
|
||||||
|
|
||||||
|
@ -3112,7 +3113,7 @@ VOID APRSISThread(void * Report)
|
||||||
BOOL bcopt=TRUE;
|
BOOL bcopt=TRUE;
|
||||||
char Buffer[1000];
|
char Buffer[1000];
|
||||||
int InputLen = 1; // Non-zero
|
int InputLen = 1; // Non-zero
|
||||||
char errmsg[300];
|
char errmsg[100];
|
||||||
char * ptr;
|
char * ptr;
|
||||||
size_t inptr = 0;
|
size_t inptr = 0;
|
||||||
char APRSinMsg[1000];
|
char APRSinMsg[1000];
|
||||||
|
@ -3673,7 +3674,7 @@ BOOL CheckforDups(char * Call, char * Msg, int Len)
|
||||||
if (ptr1)
|
if (ptr1)
|
||||||
*ptr1 = 0;
|
*ptr1 = 0;
|
||||||
|
|
||||||
// Debugprintf("Duplicate Message suppressed %s", Msg);
|
// Debugprintf("Duplicate Message supressed %s", Msg);
|
||||||
return TRUE; // Duplicate
|
return TRUE; // Duplicate
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7665,7 +7666,7 @@ VOID APRSProcessHTTPMessage(SOCKET sock, char * MsgPtr, BOOL LOCAL, BOOL COOKIE)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
OutputLen += sprintf(&OutBuffer[OutputLen], "%s", WebTrailer);
|
OutputLen += sprintf(&OutBuffer[OutputLen], WebTrailer);
|
||||||
|
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.0 200 OK\r\nContent-Length: %d\r\nContent-Type: text/html\r\n\r\n", OutputLen);
|
HeaderLen = sprintf(Header, "HTTP/1.0 200 OK\r\nContent-Length: %d\r\nContent-Type: text/html\r\n\r\n", OutputLen);
|
||||||
sendandcheck(sock, Header, HeaderLen);
|
sendandcheck(sock, Header, HeaderLen);
|
||||||
|
@ -7710,7 +7711,7 @@ VOID APRSProcessHTTPMessage(SOCKET sock, char * MsgPtr, BOOL LOCAL, BOOL COOKIE)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
OutputLen += sprintf(&OutBuffer[OutputLen], "%s", WebTrailer);
|
OutputLen += sprintf(&OutBuffer[OutputLen], WebTrailer);
|
||||||
|
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.0 200 OK\r\nContent-Length: %d\r\nContent-Type: text/html\r\n\r\n", OutputLen);
|
HeaderLen = sprintf(Header, "HTTP/1.0 200 OK\r\nContent-Length: %d\r\nContent-Type: text/html\r\n\r\n", OutputLen);
|
||||||
sendandcheck(sock, Header, HeaderLen);
|
sendandcheck(sock, Header, HeaderLen);
|
||||||
|
@ -8112,7 +8113,7 @@ extern char OrigCmdBuffer[81];
|
||||||
|
|
||||||
BOOL isSYSOP(TRANSPORTENTRY * Session, char * Bufferptr);
|
BOOL isSYSOP(TRANSPORTENTRY * Session, char * Bufferptr);
|
||||||
|
|
||||||
VOID APRSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID APRSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// APRS Subcommands. Default for compatibility is APRSMH
|
// APRS Subcommands. Default for compatibility is APRSMH
|
||||||
|
|
||||||
|
@ -9153,7 +9154,7 @@ void GetSavedAPRSMessages()
|
||||||
FILE *file;
|
FILE *file;
|
||||||
struct APRSMESSAGE * Message;
|
struct APRSMESSAGE * Message;
|
||||||
struct APRSMESSAGE * ptr;
|
struct APRSMESSAGE * ptr;
|
||||||
char Line[512];
|
char Line[256];
|
||||||
char * Stamp = 0;
|
char * Stamp = 0;
|
||||||
char * From = 0;
|
char * From = 0;
|
||||||
char * To = 0;
|
char * To = 0;
|
||||||
|
@ -9177,7 +9178,7 @@ void GetSavedAPRSMessages()
|
||||||
if ((file = fopen(FN, "r")) == NULL)
|
if ((file = fopen(FN, "r")) == NULL)
|
||||||
return ;
|
return ;
|
||||||
|
|
||||||
while (fgets(Line, sizeof(Line), file))
|
while (fgets(Line, 512, file))
|
||||||
{
|
{
|
||||||
Stamp = Line;
|
Stamp = Line;
|
||||||
From = strlop(Stamp, ' ');
|
From = strlop(Stamp, ' ');
|
||||||
|
|
9223
APRSCode.c.orig
9223
APRSCode.c.orig
File diff suppressed because it is too large
Load Diff
139
APRSCode.c.rej
139
APRSCode.c.rej
|
@ -1,139 +0,0 @@
|
||||||
--- APRSCode.c
|
|
||||||
+++ APRSCode.c
|
|
||||||
@@ -3674,7 +3674,7 @@
|
|
||||||
if (ptr1)
|
|
||||||
*ptr1 = 0;
|
|
||||||
|
|
||||||
-// Debugprintf("Duplicate Message supressed %s", Msg);
|
|
||||||
+// Debugprintf("Duplicate Message suppressed %s", Msg);
|
|
||||||
return TRUE; // Duplicate
|
|
||||||
}
|
|
||||||
}
|
|
||||||
--- BPQChat.rc
|
|
||||||
+++ BPQChat.rc
|
|
||||||
@@ -162,7 +162,7 @@
|
|
||||||
WS_VSCROLL
|
|
||||||
DEFPUSHBUTTON "Save Welcome Message",SAVEWELCOME,140,296,91,14,
|
|
||||||
BS_CENTER | BS_VCENTER
|
|
||||||
- LTEXT " If the node is not directly connectable (ie is not in your NODES table) you can add a connect script. This consists of a series of commands seperared by |, eg NOTCHT:G8BPQ-4|C 3 GM8BPQ-9|CHAT",
|
|
||||||
+ LTEXT " If the node is not directly connectable (ie is not in your NODES table) you can add a connect script. This consists of a series of commands separated by |, eg NOTCHT:G8BPQ-4|C 3 GM8BPQ-9|CHAT",
|
|
||||||
IDC_STATIC,9,52,355,24
|
|
||||||
END
|
|
||||||
|
|
||||||
--- BPQMail.rc
|
|
||||||
+++ BPQMail.rc
|
|
||||||
@@ -1045,7 +1045,7 @@
|
|
||||||
CONTROL "Delete Log and Message Files to Recycle Bin",
|
|
||||||
IDC_DELETETORECYCLE,"Button",BS_AUTOCHECKBOX |
|
|
||||||
BS_LEFTTEXT | BS_MULTILINE | WS_TABSTOP,5,142,115,20
|
|
||||||
- CONTROL "Supress Mailing of Housekeeping Results",
|
|
||||||
+ CONTROL "Suppress Mailing of Housekeeping Results",
|
|
||||||
IDC_MAINTNOMAIL,"Button",BS_AUTOCHECKBOX | BS_LEFTTEXT |
|
|
||||||
BS_MULTILINE | WS_TABSTOP,5,182,115,20
|
|
||||||
CONTROL "Generate Traffic Report",IDC_MAINTTRAFFIC,"Button",
|
|
||||||
--- HanksRT.c
|
|
||||||
+++ HanksRT.c
|
|
||||||
@@ -1186,7 +1186,7 @@
|
|
||||||
// Duplicate, so discard, but save time
|
|
||||||
|
|
||||||
DupInfo[i].DupTime = Now;
|
|
||||||
- Logprintf(LOG_CHAT, circuit, '?', "Duplicate Message From %s %s supressed", Call, Msg);
|
|
||||||
+ Logprintf(LOG_CHAT, circuit, '?', "Duplicate Message From %s %s suppressed", Call, Msg);
|
|
||||||
|
|
||||||
return TRUE; // Duplicate
|
|
||||||
}
|
|
||||||
--- RigControl.c
|
|
||||||
+++ RigControl.c
|
|
||||||
@@ -8385,7 +8385,7 @@
|
|
||||||
|
|
||||||
switch (Msg[0])
|
|
||||||
{
|
|
||||||
- case 'f': // Get Freqency
|
|
||||||
+ case 'f': // Get Frequency
|
|
||||||
|
|
||||||
HLGetFreq(Sock, RIG, sep);
|
|
||||||
return 0;
|
|
||||||
--- UZ7HODrv.c
|
|
||||||
+++ UZ7HODrv.c
|
|
||||||
@@ -374,7 +374,7 @@
|
|
||||||
{
|
|
||||||
// Read Freq
|
|
||||||
|
|
||||||
- buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "UZ7HO} Modem Freqency %d\r", AGW->CenterFreq);
|
|
||||||
+ buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "UZ7HO} Modem Frequency %d\r", AGW->CenterFreq);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -382,7 +382,7 @@
|
|
||||||
|
|
||||||
if (AGW->CenterFreq == 0)
|
|
||||||
{
|
|
||||||
- buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "UZ7HO} Invalid Modem Freqency\r");
|
|
||||||
+ buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "UZ7HO} Invalid Modem Frequency\r");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
--- WinRPRHelper.c
|
|
||||||
+++ WinRPRHelper.c
|
|
||||||
@@ -111,7 +111,7 @@
|
|
||||||
|
|
||||||
if (argc < 3)
|
|
||||||
{
|
|
||||||
- printf ("Missing paramters - you need COM port and IP Address and rigctl port of BPQ, eg \r\n"
|
|
||||||
+ printf ("Missing parameters - you need COM port and IP Address and rigctl port of BPQ, eg \r\n"
|
|
||||||
" WinRPRHelper com10 192.168.1.64:4532\r\n\r\n"
|
|
||||||
"Press any key to exit\r\n");
|
|
||||||
|
|
||||||
--- config.c
|
|
||||||
+++ config.c
|
|
||||||
@@ -649,7 +649,7 @@
|
|
||||||
if (LOCATOR[0] == 0 && LocSpecified == 0 && RFOnly == 0)
|
|
||||||
{
|
|
||||||
Consoleprintf("");
|
|
||||||
- Consoleprintf("Please enter a LOCATOR statment in your BPQ32.cfg");
|
|
||||||
+ Consoleprintf("Please enter a LOCATOR statement in your BPQ32.cfg");
|
|
||||||
Consoleprintf("If you really don't want to be on the Node Map you can enter LOCATOR=NONE");
|
|
||||||
Consoleprintf("");
|
|
||||||
|
|
||||||
--- kiss.c
|
|
||||||
+++ kiss.c
|
|
||||||
@@ -1485,7 +1485,7 @@
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
- Debugprintf("Polled KISS - response from wrong address - Polled %d Reponse %d",
|
|
||||||
+ Debugprintf("Polled KISS - response from wrong address - Polled %d Response %d",
|
|
||||||
KISS->POLLPOINTER->OURCTRL, (Port->RXMSG[0] & 0xf0));
|
|
||||||
|
|
||||||
goto SeeifMore; // SEE IF ANYTHING ELSE
|
|
||||||
--- templatedefs.c
|
|
||||||
+++ templatedefs.c
|
|
||||||
@@ -1165,7 +1165,7 @@
|
|
||||||
"Send Non-delivery Notifications<br>\r\n"
|
|
||||||
"for P and T messages <input %sname=\"SendND\" value=\"SendND\" type=\"checkbox\" /><br>\r\n"
|
|
||||||
" <br />\r\n"
|
|
||||||
- "Supress Mailing of<br>\r\n"
|
|
||||||
+ "Suppress Mailing of<br>\r\n"
|
|
||||||
"Housekeeping Result <input %sname=\"NoMail\" value=\"Yes\" type=\"checkbox\"><br><br>\r\n"
|
|
||||||
"Generate Traffic Report<input %sname=\"GenTraffic\" value=\"Yes\" type=\"checkbox\"><br><br>\r\n"
|
|
||||||
"<div style=\"text-align: center;\"><input class='btn' name=RunNow value=\"Run Housekeeping\" type=submit class='btn'></div>\r\n"
|
|
||||||
@@ -1454,7 +1454,7 @@
|
|
||||||
"<div style=\"text-align: left; width: 680px; margin: auto;\">The Nodes to link to box defines which other Chat Nodes should be connected to, or from which "
|
|
||||||
"connections may be accepted. The format is ALIAS:CALL, eg BPQCHT:G8BPQ-4. If the node is not directly "
|
|
||||||
"connectable (ie is not in your NODES table) you can add a connect script. This consists of a series of commands "
|
|
||||||
- "seperared by |, eg NOTCHT:G8BPQ-4|C 3 GM8BPQ-9|CHAT"
|
|
||||||
+ "separated by |, eg NOTCHT:G8BPQ-4|C 3 GM8BPQ-9|CHAT"
|
|
||||||
|
|
||||||
"<br><br>The Callsign of the Chat Node is not defined here - it is obtained from the bpq32.cfg APPLICATION line corresponding to the Chat Appl Number.<br>\r\n"
|
|
||||||
"<br></div>\n"
|
|
||||||
--- WebMail.c
|
|
||||||
+++ WebMail.c
|
|
||||||
@@ -2020,7 +2020,7 @@
|
|
||||||
"document.getElementById('myform').action = '/WebMail/QuoteOriginal' + '?%s';"
|
|
||||||
" document.getElementById('myform').submit();}</script>"
|
|
||||||
"<input type=button class='btn' onclick='myfunc()' "
|
|
||||||
- "value='Include Orignal Msg'>";
|
|
||||||
+ "value='Include Original Msg'>";
|
|
||||||
|
|
||||||
char Temp[1024];
|
|
||||||
char ReplyAddr[128];
|
|
168
APRSStdPages.c
168
APRSStdPages.c
|
@ -3225,170 +3225,6 @@ char * get_plane(int * Len)
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
char * get_portstats()
|
|
||||||
{
|
|
||||||
char Msg[] =
|
|
||||||
"<!DOCTYPE html>\n"
|
|
||||||
"<html>\n"
|
|
||||||
"\n"
|
|
||||||
"<head>\n"
|
|
||||||
"<script src=\"https://code.jquery.com/jquery-3.6.0.min.js\"> </script>\n"
|
|
||||||
"</head>\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"<body>\n"
|
|
||||||
"<H2 id=\"h1\"> Last hour's stats for Port </h2>\n"
|
|
||||||
"<p>\n"
|
|
||||||
"<canvas id=\"myCanvas\" width=\"600\" height=\"250\" style=\"border:1px solid #d3d3d3;\">\n"
|
|
||||||
"Your browser does not support the HTML canvas tag.</canvas>\n"
|
|
||||||
"<br>\n"
|
|
||||||
"<canvas id=\"myCanvas2\" width=\"600\" height=\"250\" style=\"border:1px solid #d3d3d3;\">\n"
|
|
||||||
"Your browser does not support the HTML canvas tag.</canvas>\n"
|
|
||||||
"\n"
|
|
||||||
"<script>\n"
|
|
||||||
"var c = document.getElementById(\"myCanvas\");\n"
|
|
||||||
"var ctx = c.getContext(\"2d\");\n"
|
|
||||||
"\n"
|
|
||||||
"var port = window.location.search.slice(1);\n"
|
|
||||||
"\n"
|
|
||||||
"document.getElementById(\"h1\").innerHTML = \"Last hour's stats for Port \" + port;;\n"
|
|
||||||
"\n"
|
|
||||||
"var oReq = new XMLHttpRequest();\n"
|
|
||||||
"oReq.open(\"GET\", \"/portstats.txt?\" + port, true);\n"
|
|
||||||
"oReq.responseType = \"arraybuffer\";\n"
|
|
||||||
"\n"
|
|
||||||
"oReq.onload = function(oEvent)\n"
|
|
||||||
" {\n"
|
|
||||||
" var arrayBuffer = oReq.response;\n"
|
|
||||||
"\n"
|
|
||||||
" var byteArray = new Uint8Array(arrayBuffer);\n"
|
|
||||||
" \n"
|
|
||||||
" \n"
|
|
||||||
" // Draw it. Do last hour for testing. Plot each value for 10 pixels\n"
|
|
||||||
" \n"
|
|
||||||
"\tctx.strokeStyle = \"green\";\n"
|
|
||||||
"\tctx.beginPath();\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.moveTo(0,200);\n"
|
|
||||||
"\tvar y = 2880 - 60;\n"
|
|
||||||
"\tvar val;\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tfor (i = 0; i < 600; i+=10)\n"
|
|
||||||
"\t{\n"
|
|
||||||
"\t\tval = byteArray[y] * 2;\n"
|
|
||||||
"\t\t\n"
|
|
||||||
"\t\tctx.lineTo(i, 200 - val);\n"
|
|
||||||
"\t\tctx.lineTo(i+10, 200 - val);\n"
|
|
||||||
"\t\ty++;\n"
|
|
||||||
"\t}\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.stroke();\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.strokeStyle = \"gray\";\n"
|
|
||||||
"\tctx.setLineDash([5, 3]);\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.beginPath();\n"
|
|
||||||
" \tctx.moveTo(0,100);\n"
|
|
||||||
"\tctx.lineTo(600,100);\n"
|
|
||||||
" \tctx.moveTo(0,50);\n"
|
|
||||||
"\tctx.lineTo(600,50);\n"
|
|
||||||
" \tctx.moveTo(0,150);\n"
|
|
||||||
"\tctx.lineTo(600,150);\n"
|
|
||||||
"\tctx.stroke();\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.fillText(\"100%\",0,10);\n"
|
|
||||||
"\tctx.fillText(\"50%\",0,100);\n"
|
|
||||||
"\tctx.fillText(\"0%\",0,200);\t\n"
|
|
||||||
"\tctx.fillText(\"-60 mins\",0,220);\t\n"
|
|
||||||
"\tctx.fillText(\"-30 mins\",300,220);\t\n"
|
|
||||||
"\tctx.fillText(\"Now\",580,220);\t\n"
|
|
||||||
"\n"
|
|
||||||
"\t\n"
|
|
||||||
"\t// Do TX\n"
|
|
||||||
"\t\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tc = document.getElementById(\"myCanvas2\");\n"
|
|
||||||
"\tctx = c.getContext(\"2d\");\n"
|
|
||||||
"\n"
|
|
||||||
"\tctx.fillText(\"100%\",0,10);\n"
|
|
||||||
"\tctx.fillText(\"50%\",0,100);\n"
|
|
||||||
"\tctx.fillText(\"0%\",0,200);\t\n"
|
|
||||||
"\tctx.fillText(\"-60 mins\",0,220);\t\n"
|
|
||||||
"\tctx.fillText(\"-30 mins\",300,220);\t\n"
|
|
||||||
"\tctx.fillText(\"Now\",580,220);\t\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"\tctx.strokeStyle = \"red\";\n"
|
|
||||||
"\tctx.beginPath();\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.moveTo(0,200);\n"
|
|
||||||
"\tvar y = 1440 - 60;\n"
|
|
||||||
"\tvar val;\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tfor (i = 0; i < 600; i+=10)\n"
|
|
||||||
"\t\n"
|
|
||||||
"\t{\n"
|
|
||||||
"\t\tval = byteArray[y] * 2;\n"
|
|
||||||
"\t\t\n"
|
|
||||||
"\t\tctx.lineTo(i, 200 - val);\n"
|
|
||||||
"\t\tctx.lineTo(i+10, 200 - val);\n"
|
|
||||||
"\t\ty++;\n"
|
|
||||||
"\t}\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.stroke();\n"
|
|
||||||
"\n"
|
|
||||||
"\tctx.strokeStyle = \"gray\";\n"
|
|
||||||
"\tctx.setLineDash([5, 3]);\n"
|
|
||||||
"\t\n"
|
|
||||||
"\tctx.beginPath();\n"
|
|
||||||
" \tctx.moveTo(0,100);\n"
|
|
||||||
"\tctx.lineTo(600,100);\n"
|
|
||||||
" \tctx.moveTo(0,50);\n"
|
|
||||||
"\tctx.lineTo(600,50);\n"
|
|
||||||
" \tctx.moveTo(0,150);\n"
|
|
||||||
"\tctx.lineTo(600,150);\n"
|
|
||||||
"\tctx.stroke();\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"};\n"
|
|
||||||
"\n"
|
|
||||||
"oReq.send();\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"function draw(Data)\n"
|
|
||||||
"{\n"
|
|
||||||
"\n"
|
|
||||||
"\t// Data has 4 bytes of index to current position the 1440 bytes of load info\n"
|
|
||||||
"\t\n"
|
|
||||||
"\n"
|
|
||||||
"\tview = new Int8Array(Data);\n"
|
|
||||||
"\t\n"
|
|
||||||
"alert(view[3]);\n"
|
|
||||||
"\n"
|
|
||||||
"ctx.moveTo(0,200);\n"
|
|
||||||
"var y = 0;\n"
|
|
||||||
"for (i = 0; i < 720; i+=30)\n"
|
|
||||||
"{\n"
|
|
||||||
"\tctx.lineTo(i, 200 - y);\n"
|
|
||||||
"\tctx.lineTo(i+30, 200 - y);\n"
|
|
||||||
"\ty += 10;\n"
|
|
||||||
"}\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
"ctx.stroke();\n"
|
|
||||||
"}\n"
|
|
||||||
"\n"
|
|
||||||
"</script>\n"
|
|
||||||
"\n"
|
|
||||||
"</body>\n"
|
|
||||||
"</html>\n"
|
|
||||||
"\n"
|
|
||||||
"";
|
|
||||||
|
|
||||||
return _strdup(Msg);;
|
|
||||||
}
|
|
||||||
|
|
||||||
char * get_aprs()
|
char * get_aprs()
|
||||||
{
|
{
|
||||||
|
@ -3802,10 +3638,6 @@ char * GetStandardPage(char * FN, int * Len)
|
||||||
if (_stricmp(FN, "leaflet.rotatedMarker.js") == 0)
|
if (_stricmp(FN, "leaflet.rotatedMarker.js") == 0)
|
||||||
return get_rotatedMarker();
|
return get_rotatedMarker();
|
||||||
|
|
||||||
if (_stricmp(FN, "PortStats.html") == 0)
|
|
||||||
return get_portstats();
|
|
||||||
|
|
||||||
|
|
||||||
if (_stricmp(FN, "info_call.html") == 0)
|
if (_stricmp(FN, "info_call.html") == 0)
|
||||||
return get_info_call();
|
return get_info_call();
|
||||||
|
|
||||||
|
|
95
ARDOP.c
95
ARDOP.c
|
@ -314,7 +314,7 @@ void SendARDOPorPacketData(struct TNCINFO * TNC, int Stream, UCHAR * Buff, int t
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
{
|
{
|
||||||
ARDOPSendData(TNC, Buff, txlen);
|
ARDOPSendData(TNC, Buff, txlen);
|
||||||
STREAM->bytesTXed += txlen;
|
STREAM->BytesTXed += txlen;
|
||||||
WritetoTrace(TNC, Buff, txlen);
|
WritetoTrace(TNC, Buff, txlen);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -562,7 +562,7 @@ static int ProcessLine(char * buf, int Port)
|
||||||
|
|
||||||
void ARDOPThread(struct TNCINFO * TNC);
|
void ARDOPThread(struct TNCINFO * TNC);
|
||||||
VOID ARDOPProcessDataSocketData(int port);
|
VOID ARDOPProcessDataSocketData(int port);
|
||||||
int ConnecttoARDOP(struct TNCINFO * TNC);
|
int ConnecttoARDOP();
|
||||||
static VOID ARDOPProcessReceivedData(struct TNCINFO * TNC);
|
static VOID ARDOPProcessReceivedData(struct TNCINFO * TNC);
|
||||||
static VOID ARDOPProcessReceivedControl(struct TNCINFO * TNC);
|
static VOID ARDOPProcessReceivedControl(struct TNCINFO * TNC);
|
||||||
int V4ProcessReceivedData(struct TNCINFO * TNC);
|
int V4ProcessReceivedData(struct TNCINFO * TNC);
|
||||||
|
@ -958,7 +958,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
TNC->Streams[0].Connecting ||
|
TNC->Streams[0].Connecting ||
|
||||||
TNC->Streams[0].Connected)
|
TNC->Streams[0].Connected)
|
||||||
{
|
{
|
||||||
// discard if TNC not connected or session active
|
// discard if TNC not connected or sesison active
|
||||||
|
|
||||||
ReleaseBuffer(buffptr);
|
ReleaseBuffer(buffptr);
|
||||||
continue;
|
continue;
|
||||||
|
@ -1274,7 +1274,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
UCHAR * data = &buffptr->Data[0];
|
UCHAR * data = &buffptr->Data[0];
|
||||||
STREAM->FramesQueued--;
|
STREAM->FramesQueued--;
|
||||||
txlen = (int)buffptr->Len;
|
txlen = (int)buffptr->Len;
|
||||||
STREAM->bytesTXed += txlen;
|
STREAM->BytesTXed += txlen;
|
||||||
|
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
{
|
{
|
||||||
|
@ -1381,7 +1381,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
{
|
{
|
||||||
bytes=ARDOPSendData(TNC, &buff->L2DATA[0], txlen);
|
bytes=ARDOPSendData(TNC, &buff->L2DATA[0], txlen);
|
||||||
TNC->Streams[Stream].BytesOutstanding += bytes; // So flow control works - will be updated by BUFFER response
|
TNC->Streams[Stream].BytesOutstanding += bytes; // So flow control works - will be updated by BUFFER response
|
||||||
STREAM->bytesTXed += bytes;
|
STREAM->BytesTXed += bytes;
|
||||||
WritetoTrace(TNC, &buff->L2DATA[0], txlen);
|
WritetoTrace(TNC, &buff->L2DATA[0], txlen);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -1627,8 +1627,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
|
|
||||||
ARDOPChangeMYC(TNC, TNC->Streams[0].MyCall);
|
ARDOPChangeMYC(TNC, TNC->Streams[0].MyCall);
|
||||||
|
|
||||||
hookL4SessionAttempt(STREAM, &buff->L2DATA[2], TNC->Streams[0].MyCall);
|
|
||||||
|
|
||||||
// See if Busy
|
// See if Busy
|
||||||
|
|
||||||
if (InterlockedCheckBusy(TNC))
|
if (InterlockedCheckBusy(TNC))
|
||||||
|
@ -1867,11 +1865,13 @@ VOID ARDOPReleaseTNC(struct TNCINFO * TNC)
|
||||||
|
|
||||||
ARDOPChangeMYC(TNC, TNC->NodeCall);
|
ARDOPChangeMYC(TNC, TNC->NodeCall);
|
||||||
|
|
||||||
|
ARDOPSendCommand(TNC, "LISTEN TRUE", TRUE);
|
||||||
|
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
strcpy(TNC->WEB_TNCSTATE, "Free");
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
||||||
|
|
||||||
ARDOPSendCommand(TNC, "LISTEN TRUE", TRUE);
|
// Start Scanner
|
||||||
|
|
||||||
// Start Scanner
|
// Start Scanner
|
||||||
|
|
||||||
if (TNC->DefaultRadioCmd)
|
if (TNC->DefaultRadioCmd)
|
||||||
|
@ -1889,19 +1889,12 @@ VOID ARDOPReleaseTNC(struct TNCINFO * TNC)
|
||||||
|
|
||||||
VOID ARDOPSuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
VOID ARDOPSuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
||||||
{
|
{
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = TRUE;
|
|
||||||
ARDOPSendCommand(TNC, "LISTEN FALSE", TRUE);
|
ARDOPSendCommand(TNC, "LISTEN FALSE", TRUE);
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Interlocked");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID ARDOPReleasePort(struct TNCINFO * TNC)
|
VOID ARDOPReleasePort(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = FALSE;
|
|
||||||
ARDOPSendCommand(TNC, "LISTEN TRUE", TRUE);
|
ARDOPSendCommand(TNC, "LISTEN TRUE", TRUE);
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extern char WebProcTemplate[];
|
extern char WebProcTemplate[];
|
||||||
|
@ -2265,7 +2258,7 @@ VOID TNCLost(struct TNCINFO * TNC)
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
{
|
{
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - STREAM->BytesOutstanding, STREAM->bytesRXed, STREAM->BytesOutstanding);
|
STREAM->BytesTXed - STREAM->BytesOutstanding, STREAM->BytesRXed, STREAM->BytesOutstanding);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2960,15 +2953,6 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
if (TNC->PTTMode)
|
if (TNC->PTTMode)
|
||||||
Rig_PTT(TNC, TRUE);
|
Rig_PTT(TNC, TRUE);
|
||||||
|
|
||||||
TNC->PTTonTime = GetTickCount();
|
|
||||||
|
|
||||||
// Cancel Busy timer (stats include ptt on time in port active
|
|
||||||
|
|
||||||
if (TNC->BusyonTime)
|
|
||||||
{
|
|
||||||
TNC->BusyActivemS += (GetTickCount() - TNC->BusyonTime);
|
|
||||||
TNC->BusyonTime = 0;
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (_memicmp(Buffer, "PTT F", 5) == 0)
|
if (_memicmp(Buffer, "PTT F", 5) == 0)
|
||||||
|
@ -2977,12 +2961,6 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
if (TNC->PTTMode)
|
if (TNC->PTTMode)
|
||||||
Rig_PTT(TNC, FALSE);
|
Rig_PTT(TNC, FALSE);
|
||||||
|
|
||||||
if (TNC->PTTonTime)
|
|
||||||
{
|
|
||||||
TNC->PTTActivemS += (GetTickCount() - TNC->PTTonTime);
|
|
||||||
TNC->PTTonTime = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2991,8 +2969,6 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
TNC->BusyFlags |= CDBusy;
|
TNC->BusyFlags |= CDBusy;
|
||||||
TNC->Busy = TNC->BusyHold * 10; // BusyHold delay
|
TNC->Busy = TNC->BusyHold * 10; // BusyHold delay
|
||||||
|
|
||||||
TNC->BusyonTime = GetTickCount();
|
|
||||||
|
|
||||||
MySetWindowText(TNC->xIDC_CHANSTATE, "Busy");
|
MySetWindowText(TNC->xIDC_CHANSTATE, "Busy");
|
||||||
strcpy(TNC->WEB_CHANSTATE, "Busy");
|
strcpy(TNC->WEB_CHANSTATE, "Busy");
|
||||||
|
|
||||||
|
@ -3009,12 +2985,6 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
else
|
else
|
||||||
strcpy(TNC->WEB_CHANSTATE, "Clear");
|
strcpy(TNC->WEB_CHANSTATE, "Clear");
|
||||||
|
|
||||||
if (TNC->BusyonTime)
|
|
||||||
{
|
|
||||||
TNC->BusyActivemS += (GetTickCount() - TNC->BusyonTime);
|
|
||||||
TNC->BusyonTime = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
MySetWindowText(TNC->xIDC_CHANSTATE, TNC->WEB_CHANSTATE);
|
MySetWindowText(TNC->xIDC_CHANSTATE, TNC->WEB_CHANSTATE);
|
||||||
TNC->WinmorRestartCodecTimer = time(NULL);
|
TNC->WinmorRestartCodecTimer = time(NULL);
|
||||||
return;
|
return;
|
||||||
|
@ -3065,7 +3035,7 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - STREAM->BytesOutstanding, STREAM->bytesRXed, STREAM->BytesOutstanding);
|
STREAM->BytesTXed - STREAM->BytesOutstanding, STREAM->BytesRXed, STREAM->BytesOutstanding);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -3085,7 +3055,7 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
WritetoTrace(TNC, Buffer, MsgLen - 1);
|
WritetoTrace(TNC, Buffer, MsgLen - 1);
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->PacketsSent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->PacketsSent = 0;
|
||||||
|
|
||||||
memcpy(Call, &Buffer[10], 10);
|
memcpy(Call, &Buffer[10], 10);
|
||||||
|
|
||||||
|
@ -3212,7 +3182,7 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
if (TNC->SendTandRtoRelay && memcmp(AppName, "RMS ", 4) == 0
|
if (TNC->SendTandRtoRelay && memcmp(AppName, "RMS ", 4) == 0
|
||||||
|
@ -3262,7 +3232,7 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
STREAM->NeedDisc = 100; // 10 secs
|
STREAM->NeedDisc = 100; // 10 secs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
strcpy(STREAM->MyCall, TNC->TargetCall);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -3349,13 +3319,29 @@ VOID ARDOPProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
|
|
||||||
WritetoTrace(TNC, Buffer, MsgLen - 1);
|
WritetoTrace(TNC, Buffer, MsgLen - 1);
|
||||||
|
|
||||||
// Release Session
|
// Release Session3
|
||||||
|
|
||||||
if (TNC->Streams[0].Connected)
|
if (TNC->Streams[0].Connected)
|
||||||
{
|
{
|
||||||
// Create a traffic record
|
// Create a traffic record
|
||||||
|
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
char logmsg[120];
|
||||||
|
time_t Duration;
|
||||||
|
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1;
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
|
|
||||||
|
STREAM->ConnectTime = 0; // Prevent retrigger
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3836,12 +3822,13 @@ VOID ARDOPProcessDataPacket(struct TNCINFO * TNC, UCHAR * Type, UCHAR * Data, in
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
STREAM->bytesRXed += Length;
|
STREAM->BytesRXed += Length;
|
||||||
|
|
||||||
Data[Length] = 0;
|
Data[Length] = 0;
|
||||||
|
Debugprintf("ARDOP: RXD %d bytes", Length);
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - STREAM->BytesOutstanding, STREAM->bytesRXed, STREAM->BytesOutstanding);
|
STREAM->BytesTXed - STREAM->BytesOutstanding, STREAM->BytesRXed, STREAM->BytesOutstanding);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
|
|
||||||
|
|
||||||
|
@ -3865,7 +3852,6 @@ VOID ARDOPProcessDataPacket(struct TNCINFO * TNC, UCHAR * Type, UCHAR * Data, in
|
||||||
char * ptr2;
|
char * ptr2;
|
||||||
char c;
|
char c;
|
||||||
int Len = Length;
|
int Len = Length;
|
||||||
char Call[10] = "";
|
|
||||||
|
|
||||||
Debugprintf(Data);
|
Debugprintf(Data);
|
||||||
|
|
||||||
|
@ -3938,14 +3924,7 @@ VOID ARDOPProcessDataPacket(struct TNCINFO * TNC, UCHAR * Type, UCHAR * Data, in
|
||||||
buffptr->LENGTH = 16 + MSGHDDRLEN + APLen;
|
buffptr->LENGTH = 16 + MSGHDDRLEN + APLen;
|
||||||
time(&buffptr->Timestamp);
|
time(&buffptr->Timestamp);
|
||||||
|
|
||||||
memcpy(Call,ptr1, 9);
|
|
||||||
strlop(Call, '>');
|
|
||||||
UpdateMH(TNC, Call, '!', 'I');
|
|
||||||
|
|
||||||
BPQTRACE((MESSAGE *)buffptr, TRUE);
|
BPQTRACE((MESSAGE *)buffptr, TRUE);
|
||||||
|
|
||||||
ReleaseBuffer(buffptr);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -4990,7 +4969,7 @@ tcpHostFrame:
|
||||||
WritetoTrace(TNC, Buffer, len);
|
WritetoTrace(TNC, Buffer, len);
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->PacketsSent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->PacketsSent = 0;
|
||||||
|
|
||||||
memcpy(Call, &Buffer[19], 10);
|
memcpy(Call, &Buffer[19], 10);
|
||||||
ptr = strchr(Call, ' ');
|
ptr = strchr(Call, ' ');
|
||||||
|
@ -5063,7 +5042,7 @@ tcpHostFrame:
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// Make sure app is available
|
// Make sure app is available
|
||||||
|
|
100
BBSHTMLConfig.c
100
BBSHTMLConfig.c
|
@ -116,7 +116,7 @@ int SendWebMailHeader(char * Reply, char * Key, struct HTTPConnectionInfo * Sess
|
||||||
struct UserInfo * FindBBS(char * Name);
|
struct UserInfo * FindBBS(char * Name);
|
||||||
void ReleaseWebMailStruct(WebMailInfo * WebMail);
|
void ReleaseWebMailStruct(WebMailInfo * WebMail);
|
||||||
VOID TidyWelcomeMsg(char ** pPrompt);
|
VOID TidyWelcomeMsg(char ** pPrompt);
|
||||||
int MailAPIProcessHTTPMessage(struct HTTPConnectionInfo * Session, char * response, char * Method, char * URL, char * request, BOOL LOCAL, char * Param, char * Token);
|
int MailAPIProcessHTTPMessage(char * response, char * Method, char * URL, char * request, BOOL LOCAL, char * Param);
|
||||||
|
|
||||||
char UNC[] = "";
|
char UNC[] = "";
|
||||||
char CHKD[] = "checked=checked ";
|
char CHKD[] = "checked=checked ";
|
||||||
|
@ -405,20 +405,41 @@ int SendHeader(char * Reply, char * Key)
|
||||||
|
|
||||||
void ConvertTitletoUTF8(WebMailInfo * WebMail, char * Title, char * UTF8Title, int Len)
|
void ConvertTitletoUTF8(WebMailInfo * WebMail, char * Title, char * UTF8Title, int Len)
|
||||||
{
|
{
|
||||||
Len = strlen(Title);
|
if (WebIsUTF8(Title, (int)strlen(Title)) == FALSE)
|
||||||
|
|
||||||
if (WebIsUTF8(Title, Len) == FALSE)
|
|
||||||
{
|
{
|
||||||
int code = TrytoGuessCode(Title, Len);
|
// With Windows it is simple - convert using current codepage
|
||||||
|
// I think the only reliable way is to convert to unicode and back
|
||||||
|
|
||||||
if (code == 437)
|
int origlen = (int)strlen(Title) + 1;
|
||||||
Len = Convert437toUTF8(Title, Len, UTF8Title);
|
#ifdef WIN32
|
||||||
else if (code == 1251)
|
WCHAR BufferW[128];
|
||||||
Len = Convert1251toUTF8(Title, Len, UTF8Title);
|
int wlen;
|
||||||
else
|
int len = origlen;
|
||||||
Len = Convert1252toUTF8(Title, Len, UTF8Title);
|
|
||||||
|
|
||||||
UTF8Title[Len] = 0;
|
wlen = MultiByteToWideChar(CP_ACP, 0, Title, len, BufferW, origlen * 2);
|
||||||
|
len = WideCharToMultiByte(CP_UTF8, 0, BufferW, wlen, UTF8Title, origlen * 2, NULL, NULL);
|
||||||
|
#else
|
||||||
|
size_t left = Len - 1;
|
||||||
|
size_t len = origlen;
|
||||||
|
|
||||||
|
iconv_t * icu = WebMail->iconv_toUTF8;
|
||||||
|
|
||||||
|
if (WebMail->iconv_toUTF8 == NULL)
|
||||||
|
icu = WebMail->iconv_toUTF8 = iconv_open("UTF-8//IGNORE", "CP1252");
|
||||||
|
|
||||||
|
if (icu == (iconv_t)-1)
|
||||||
|
{
|
||||||
|
strcpy(UTF8Title, Title);
|
||||||
|
WebMail->iconv_toUTF8 = NULL;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
char * orig = UTF8Title;
|
||||||
|
|
||||||
|
iconv(icu, NULL, NULL, NULL, NULL); // Reset State Machine
|
||||||
|
iconv(icu, &Title, &len, (char ** __restrict__)&UTF8Title, &left);
|
||||||
|
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
strcpy(UTF8Title, Title);
|
strcpy(UTF8Title, Title);
|
||||||
|
@ -426,7 +447,7 @@ void ConvertTitletoUTF8(WebMailInfo * WebMail, char * Title, char * UTF8Title, i
|
||||||
|
|
||||||
BOOL GotFirstMessage = 0;
|
BOOL GotFirstMessage = 0;
|
||||||
|
|
||||||
void ProcessMailHTTPMessage(struct HTTPConnectionInfo * Session, char * Method, char * URL, char * input, char * Reply, int * RLen, int InputLen, char * Token)
|
void ProcessMailHTTPMessage(struct HTTPConnectionInfo * Session, char * Method, char * URL, char * input, char * Reply, int * RLen, int InputLen)
|
||||||
{
|
{
|
||||||
char * Context = 0, * NodeURL;
|
char * Context = 0, * NodeURL;
|
||||||
int ReplyLen;
|
int ReplyLen;
|
||||||
|
@ -456,13 +477,6 @@ void ProcessMailHTTPMessage(struct HTTPConnectionInfo * Session, char * Method,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (_memicmp(URL, "/Mail/API/v1/", 13) == 0)
|
|
||||||
{
|
|
||||||
*RLen = MailAPIProcessHTTPMessage(Session, Reply, Method, URL, input, LOCAL, Context, Token);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// There is a problem if Mail is reloaded without reloading the node
|
// There is a problem if Mail is reloaded without reloading the node
|
||||||
|
|
||||||
if (GotFirstMessage == 0)
|
if (GotFirstMessage == 0)
|
||||||
|
@ -480,6 +494,12 @@ void ProcessMailHTTPMessage(struct HTTPConnectionInfo * Session, char * Method,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_memicmp(URL, "/Mail/API/", 10) == 0)
|
||||||
|
{
|
||||||
|
*RLen = MailAPIProcessHTTPMessage(Reply, Method, URL, input, LOCAL, Context);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (strcmp(Method, "POST") == 0)
|
if (strcmp(Method, "POST") == 0)
|
||||||
{
|
{
|
||||||
|
@ -2976,8 +2996,6 @@ int ProcessWebmailWebSock(char * MsgPtr, char * OutBuffer);
|
||||||
|
|
||||||
static char PipeFileName[] = "\\\\.\\pipe\\BPQMailWebPipe";
|
static char PipeFileName[] = "\\\\.\\pipe\\BPQMailWebPipe";
|
||||||
|
|
||||||
// Constants
|
|
||||||
|
|
||||||
static DWORD WINAPI InstanceThread(LPVOID lpvParam)
|
static DWORD WINAPI InstanceThread(LPVOID lpvParam)
|
||||||
|
|
||||||
// This routine is a thread processing function to read from and reply to a client
|
// This routine is a thread processing function to read from and reply to a client
|
||||||
|
@ -2998,7 +3016,6 @@ static DWORD WINAPI InstanceThread(LPVOID lpvParam)
|
||||||
char URL[100001];
|
char URL[100001];
|
||||||
char * Context, * Method;
|
char * Context, * Method;
|
||||||
int n;
|
int n;
|
||||||
char token[16]= "";
|
|
||||||
|
|
||||||
char * ptr;
|
char * ptr;
|
||||||
|
|
||||||
|
@ -3034,43 +3051,18 @@ static DWORD WINAPI InstanceThread(LPVOID lpvParam)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// look for auth header
|
strcpy(URL, MsgPtr);
|
||||||
|
|
||||||
const char * auth_header = "Authorization: Bearer ";
|
|
||||||
char * token_begin = strstr(MsgPtr, auth_header);
|
|
||||||
int Flags = 0, n;
|
|
||||||
|
|
||||||
// Node Flags isn't currently used
|
ptr = strstr(URL, " HTTP");
|
||||||
|
|
||||||
char * Tok;
|
if (ptr)
|
||||||
char * param;
|
*ptr = 0;
|
||||||
|
|
||||||
if (token_begin)
|
Method = strtok_s(URL, " ", &Context);
|
||||||
{
|
|
||||||
// Using Auth Header
|
|
||||||
|
|
||||||
// Extract the token from the request (assuming it's present in the request headers)
|
ProcessMailHTTPMessage(&Session, Method, Context, MsgPtr, OutBuffer, &OutputLen, InputLen);
|
||||||
|
|
||||||
token_begin += strlen(auth_header); // Move to the beginning of the token
|
|
||||||
strncpy(token, token_begin, 13);
|
|
||||||
token[13] = '\0'; // Null-terminate the token
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(URL, MsgPtr);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ptr = strstr(URL, " HTTP");
|
|
||||||
|
|
||||||
if (ptr)
|
|
||||||
*ptr = 0;
|
|
||||||
|
|
||||||
Method = strtok_s(URL, " ", &Context);
|
|
||||||
|
|
||||||
ProcessMailHTTPMessage(&Session, Method, Context, MsgPtr, OutBuffer, &OutputLen, InputLen, token);
|
|
||||||
|
|
||||||
|
|
||||||
WriteFile(hPipe, &Session, sizeof (struct HTTPConnectionInfo), &n, NULL);
|
WriteFile(hPipe, &Session, sizeof (struct HTTPConnectionInfo), &n, NULL);
|
||||||
WriteFile(hPipe, OutBuffer, OutputLen, &cbWritten, NULL);
|
WriteFile(hPipe, OutBuffer, OutputLen, &cbWritten, NULL);
|
||||||
|
|
||||||
|
|
187
BBSUtilities.c
187
BBSUtilities.c
|
@ -51,8 +51,6 @@ extern struct ConsoleInfo BBSConsole;
|
||||||
|
|
||||||
extern char LOC[7];
|
extern char LOC[7];
|
||||||
|
|
||||||
extern BOOL MQTT;
|
|
||||||
|
|
||||||
//#define BBSIDLETIME 120
|
//#define BBSIDLETIME 120
|
||||||
//#define USERIDLETIME 300
|
//#define USERIDLETIME 300
|
||||||
|
|
||||||
|
@ -126,9 +124,8 @@ void decodeblock( unsigned char in[4], unsigned char out[3]);
|
||||||
int encode_quoted_printable(char *s, char * out, int Len);
|
int encode_quoted_printable(char *s, char * out, int Len);
|
||||||
int32_t Encode(char * in, char * out, int32_t inlen, BOOL B1Protocol, int Compress);
|
int32_t Encode(char * in, char * out, int32_t inlen, BOOL B1Protocol, int Compress);
|
||||||
int APIENTRY ChangeSessionCallsign(int Stream, unsigned char * AXCall);
|
int APIENTRY ChangeSessionCallsign(int Stream, unsigned char * AXCall);
|
||||||
void SendMessageReadEvent(char * call, struct MsgInfo * Msg);
|
void SendMessageReadEvent(char * user, struct MsgInfo * Msg);
|
||||||
void SendNewMessageEvent(char * call, struct MsgInfo * Msg);
|
void SendNewMessageEvent(char * call, struct MsgInfo * Msg);
|
||||||
void MQTTMessageEvent(struct MsgInfo * message);
|
|
||||||
|
|
||||||
config_t cfg;
|
config_t cfg;
|
||||||
config_setting_t * group;
|
config_setting_t * group;
|
||||||
|
@ -272,8 +269,6 @@ char FilesNames[4][100] = {"", "", "", ""};
|
||||||
|
|
||||||
char * Logs[4] = {"BBS", "CHAT", "TCP", "DEBUG"};
|
char * Logs[4] = {"BBS", "CHAT", "TCP", "DEBUG"};
|
||||||
|
|
||||||
extern struct SEM ConfigSEM;
|
|
||||||
|
|
||||||
|
|
||||||
BOOL OpenLogfile(int Flags)
|
BOOL OpenLogfile(int Flags)
|
||||||
{
|
{
|
||||||
|
@ -2214,7 +2209,7 @@ BOOL CheckValidCall(char * From)
|
||||||
if (DontCheckFromCall)
|
if (DontCheckFromCall)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
if (strcmp(From, "SYSOP") == 0 || strcmp(From, "SYSTEM") == 0 || strcmp(From, "SERVIC") == 0 ||
|
if (strcmp(From, "SYSOP") == 0 || strcmp(From, "SYSTEM") == 0 ||
|
||||||
strcmp(From, "IMPORT") == 0 || strcmp(From, "SMTP:") == 0 || strcmp(From, "RMS:") == 0)
|
strcmp(From, "IMPORT") == 0 || strcmp(From, "SMTP:") == 0 || strcmp(From, "RMS:") == 0)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
@ -3455,11 +3450,6 @@ VOID FlagAsKilled(struct MsgInfo * Msg, BOOL SaveDB)
|
||||||
if (SaveDB)
|
if (SaveDB)
|
||||||
SaveMessageDatabase();
|
SaveMessageDatabase();
|
||||||
RebuildNNTPList();
|
RebuildNNTPList();
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(Msg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DoDeliveredCommand(CIRCUIT * conn, struct UserInfo * user, char * Cmd, char * Arg1, char * Context)
|
void DoDeliveredCommand(CIRCUIT * conn, struct UserInfo * user, char * Cmd, char * Arg1, char * Context)
|
||||||
|
@ -4904,10 +4894,6 @@ sendEOM:
|
||||||
Msg->datechanged=time(NULL);
|
Msg->datechanged=time(NULL);
|
||||||
SaveMessageDatabase();
|
SaveMessageDatabase();
|
||||||
SendMessageReadEvent(user->Call, Msg);
|
SendMessageReadEvent(user->Call, Msg);
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(Msg);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5578,19 +5564,14 @@ BOOL CreateMessage(CIRCUIT * conn, char * From, char * ToCall, char * ATBBS, cha
|
||||||
{
|
{
|
||||||
if (_memicmp(ToCall, "rms:", 4) == 0)
|
if (_memicmp(ToCall, "rms:", 4) == 0)
|
||||||
{
|
{
|
||||||
// Could be ampr.org message
|
if (!FindRMS())
|
||||||
|
|
||||||
if (!isAMPRMsg(ToCall))
|
|
||||||
{
|
{
|
||||||
if (!FindRMS())
|
nodeprintf(conn, "*** Error - Forwarding via RMS is not configured on this BBS\r");
|
||||||
{
|
return FALSE;
|
||||||
nodeprintf(conn, "*** Error - Forwarding via RMS is not configured on this BBS\r");
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
via=strlop(ToCall, ':');
|
via=strlop(ToCall, ':');
|
||||||
_strupr(ToCall);
|
_strupr(ToCall);
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (_memicmp(ToCall, "rms/", 4) == 0)
|
else if (_memicmp(ToCall, "rms/", 4) == 0)
|
||||||
{
|
{
|
||||||
|
@ -6469,10 +6450,6 @@ nextline:
|
||||||
user = LookupCall(Msg->to);
|
user = LookupCall(Msg->to);
|
||||||
|
|
||||||
SendNewMessageEvent(user->Call, Msg);
|
SendNewMessageEvent(user->Call, Msg);
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(Msg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (EnableUI)
|
if (EnableUI)
|
||||||
#ifdef LINBPQ
|
#ifdef LINBPQ
|
||||||
|
@ -6898,7 +6875,7 @@ int CountMessagestoForward (struct UserInfo * user)
|
||||||
if ((Msg->status != 'H') && (Msg->status != 'D') && Msg->type && check_fwd_bit(Msg->fbbs, BBSNumber))
|
if ((Msg->status != 'H') && (Msg->status != 'D') && Msg->type && check_fwd_bit(Msg->fbbs, BBSNumber))
|
||||||
{
|
{
|
||||||
n++;
|
n++;
|
||||||
continue; // So we dont count twice if Flag set and NTS MPS
|
continue; // So we dont count twice in Flag set and NTS MPS
|
||||||
}
|
}
|
||||||
|
|
||||||
// if an NTS MPS, also check for any matches
|
// if an NTS MPS, also check for any matches
|
||||||
|
@ -6939,66 +6916,6 @@ int CountMessagestoForward (struct UserInfo * user)
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
int CountBytestoForward (struct UserInfo * user)
|
|
||||||
{
|
|
||||||
// See if any messages are queued for this BBS. If so return total bytes queued
|
|
||||||
|
|
||||||
int m, n=0;
|
|
||||||
struct MsgInfo * Msg;
|
|
||||||
int BBSNumber = user->BBSNumber;
|
|
||||||
int FirstMessage = FirstMessageIndextoForward;
|
|
||||||
|
|
||||||
if ((user->flags & F_NTSMPS))
|
|
||||||
FirstMessage = 1;
|
|
||||||
|
|
||||||
for (m = FirstMessage; m <= NumberofMessages; m++)
|
|
||||||
{
|
|
||||||
Msg=MsgHddrPtr[m];
|
|
||||||
|
|
||||||
if ((Msg->status != 'H') && (Msg->status != 'D') && Msg->type && check_fwd_bit(Msg->fbbs, BBSNumber))
|
|
||||||
{
|
|
||||||
n += Msg->length;
|
|
||||||
continue; // So we dont count twice if Flag set and NTS MPS
|
|
||||||
}
|
|
||||||
|
|
||||||
// if an NTS MPS, also check for any matches
|
|
||||||
|
|
||||||
if (Msg->type == 'T' && (user->flags & F_NTSMPS))
|
|
||||||
{
|
|
||||||
struct BBSForwardingInfo * ForwardingInfo = user->ForwardingInfo;
|
|
||||||
int depth;
|
|
||||||
|
|
||||||
if (Msg->status == 'N' && ForwardingInfo)
|
|
||||||
{
|
|
||||||
depth = CheckBBSToForNTS(Msg, ForwardingInfo);
|
|
||||||
|
|
||||||
if (depth > -1 && Msg->Locked == 0)
|
|
||||||
{
|
|
||||||
n += Msg->length;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
depth = CheckBBSAtList(Msg, ForwardingInfo, Msg->via);
|
|
||||||
|
|
||||||
if (depth && Msg->Locked == 0)
|
|
||||||
{
|
|
||||||
n += Msg->length;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
depth = CheckBBSATListWildCarded(Msg, ForwardingInfo, Msg->via);
|
|
||||||
|
|
||||||
if (depth > -1 && Msg->Locked == 0)
|
|
||||||
{
|
|
||||||
n += Msg->length;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
|
|
||||||
int ListMessagestoForward(CIRCUIT * conn, struct UserInfo * user)
|
int ListMessagestoForward(CIRCUIT * conn, struct UserInfo * user)
|
||||||
{
|
{
|
||||||
// See if any messages are queued for this BBS
|
// See if any messages are queued for this BBS
|
||||||
|
@ -8219,15 +8136,6 @@ BOOL ProcessBBSConnectScript(CIRCUIT * conn, char * Buffer, int len)
|
||||||
Line = Scripts[n];
|
Line = Scripts[n];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Line == NULL)
|
|
||||||
{
|
|
||||||
// No more lines - Disconnect
|
|
||||||
|
|
||||||
conn->BBSFlags &= ~RunningConnectScript; // so it doesn't get reentered
|
|
||||||
Disconnect(conn->BPQStream);
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_memicmp(Line, "TIMES", 5) == 0)
|
if (_memicmp(Line, "TIMES", 5) == 0)
|
||||||
{
|
{
|
||||||
NextBand:
|
NextBand:
|
||||||
|
@ -9614,8 +9522,6 @@ VOID SaveConfig(char * ConfigName)
|
||||||
char FBBString[8192]= "";
|
char FBBString[8192]= "";
|
||||||
FBBFilter * p = Filters;
|
FBBFilter * p = Filters;
|
||||||
char * ptr = FBBString;
|
char * ptr = FBBString;
|
||||||
|
|
||||||
GetSemaphore(&ConfigSEM, 60);
|
|
||||||
|
|
||||||
if (configSaved == 0)
|
if (configSaved == 0)
|
||||||
{
|
{
|
||||||
|
@ -10039,11 +9945,10 @@ VOID SaveConfig(char * ConfigName)
|
||||||
|
|
||||||
#ifdef LINBPQ
|
#ifdef LINBPQ
|
||||||
|
|
||||||
if(!config_write_file(&cfg,"/dev/shm/linmail.cfg.temp" ))
|
if(! config_write_file(&cfg,"/dev/shm/linmail.cfg.temp" ))
|
||||||
{
|
{
|
||||||
print("Error while writing file.\n");
|
print("Error while writing file.\n");
|
||||||
config_destroy(&cfg);
|
config_destroy(&cfg);
|
||||||
FreeSemaphore(&ConfigSEM);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10055,8 +9960,6 @@ VOID SaveConfig(char * ConfigName)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Error while writing file.\n");
|
fprintf(stderr, "Error while writing file.\n");
|
||||||
config_destroy(&cfg);
|
config_destroy(&cfg);
|
||||||
FreeSemaphore(&ConfigSEM);
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10085,8 +9988,6 @@ VOID SaveConfig(char * ConfigName)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
*/
|
*/
|
||||||
|
|
||||||
FreeSemaphore(&ConfigSEM);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int GetIntValue(config_setting_t * group, char * name)
|
int GetIntValue(config_setting_t * group, char * name)
|
||||||
|
@ -10157,7 +10058,7 @@ BOOL GetConfig(char * ConfigName)
|
||||||
int i;
|
int i;
|
||||||
char Size[80];
|
char Size[80];
|
||||||
config_setting_t *setting;
|
config_setting_t *setting;
|
||||||
char * ptr1;
|
const char * ptr;
|
||||||
char FBBString[8192]= "";
|
char FBBString[8192]= "";
|
||||||
FBBFilter f;
|
FBBFilter f;
|
||||||
config_init(&cfg);
|
config_init(&cfg);
|
||||||
|
@ -10279,7 +10180,8 @@ BOOL GetConfig(char * ConfigName)
|
||||||
|
|
||||||
if (setting && setting->value.sval[0])
|
if (setting && setting->value.sval[0])
|
||||||
{
|
{
|
||||||
WelcomeMsg = _strdup(config_setting_get_string (setting));
|
ptr = config_setting_get_string (setting);
|
||||||
|
WelcomeMsg = _strdup(ptr);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
WelcomeMsg = _strdup("Hello $I. Latest Message is $L, Last listed is $Z\r\n");
|
WelcomeMsg = _strdup("Hello $I. Latest Message is $L, Last listed is $Z\r\n");
|
||||||
|
@ -10288,7 +10190,10 @@ BOOL GetConfig(char * ConfigName)
|
||||||
setting = config_setting_get_member (group, "NewUserWelcomeMsg");
|
setting = config_setting_get_member (group, "NewUserWelcomeMsg");
|
||||||
|
|
||||||
if (setting && setting->value.sval[0])
|
if (setting && setting->value.sval[0])
|
||||||
NewWelcomeMsg = _strdup(config_setting_get_string (setting));
|
{
|
||||||
|
ptr = config_setting_get_string (setting);
|
||||||
|
NewWelcomeMsg = _strdup(ptr);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
NewWelcomeMsg = _strdup("Hello $I. Latest Message is $L, Last listed is $Z\r\n");
|
NewWelcomeMsg = _strdup("Hello $I. Latest Message is $L, Last listed is $Z\r\n");
|
||||||
|
|
||||||
|
@ -10296,7 +10201,10 @@ BOOL GetConfig(char * ConfigName)
|
||||||
setting = config_setting_get_member (group, "ExpertWelcomeMsg");
|
setting = config_setting_get_member (group, "ExpertWelcomeMsg");
|
||||||
|
|
||||||
if (setting && setting->value.sval[0])
|
if (setting && setting->value.sval[0])
|
||||||
ExpertWelcomeMsg = _strdup(config_setting_get_string (setting));
|
{
|
||||||
|
ptr = config_setting_get_string (setting);
|
||||||
|
ExpertWelcomeMsg = _strdup(ptr);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
ExpertWelcomeMsg = _strdup("");
|
ExpertWelcomeMsg = _strdup("");
|
||||||
|
|
||||||
|
@ -10305,7 +10213,10 @@ BOOL GetConfig(char * ConfigName)
|
||||||
setting = config_setting_get_member (group, "Prompt");
|
setting = config_setting_get_member (group, "Prompt");
|
||||||
|
|
||||||
if (setting && setting->value.sval[0])
|
if (setting && setting->value.sval[0])
|
||||||
Prompt = _strdup(config_setting_get_string (setting));
|
{
|
||||||
|
ptr = config_setting_get_string (setting);
|
||||||
|
Prompt = _strdup(ptr);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Prompt = malloc(20);
|
Prompt = malloc(20);
|
||||||
|
@ -10315,7 +10226,10 @@ BOOL GetConfig(char * ConfigName)
|
||||||
setting = config_setting_get_member (group, "NewUserPrompt");
|
setting = config_setting_get_member (group, "NewUserPrompt");
|
||||||
|
|
||||||
if (setting && setting->value.sval[0])
|
if (setting && setting->value.sval[0])
|
||||||
NewPrompt = _strdup(config_setting_get_string (setting));
|
{
|
||||||
|
ptr = config_setting_get_string (setting);
|
||||||
|
NewPrompt = _strdup(ptr);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
NewPrompt = malloc(20);
|
NewPrompt = malloc(20);
|
||||||
|
@ -10325,7 +10239,10 @@ BOOL GetConfig(char * ConfigName)
|
||||||
setting = config_setting_get_member (group, "ExpertPrompt");
|
setting = config_setting_get_member (group, "ExpertPrompt");
|
||||||
|
|
||||||
if (setting && setting->value.sval[0])
|
if (setting && setting->value.sval[0])
|
||||||
ExpertPrompt = _strdup(config_setting_get_string (setting));
|
{
|
||||||
|
ptr = config_setting_get_string (setting);
|
||||||
|
ExpertPrompt = _strdup(ptr);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ExpertPrompt = malloc(20);
|
ExpertPrompt = malloc(20);
|
||||||
|
@ -10348,7 +10265,7 @@ BOOL GetConfig(char * ConfigName)
|
||||||
|
|
||||||
GetStringValue(group, "FBBFilters", FBBString);
|
GetStringValue(group, "FBBFilters", FBBString);
|
||||||
|
|
||||||
ptr1 = FBBString;
|
ptr = FBBString;
|
||||||
|
|
||||||
// delete old list
|
// delete old list
|
||||||
|
|
||||||
|
@ -10362,31 +10279,31 @@ BOOL GetConfig(char * ConfigName)
|
||||||
free(Filters);
|
free(Filters);
|
||||||
Filters = NULL;
|
Filters = NULL;
|
||||||
|
|
||||||
while (ptr1 && ptr1[0])
|
while (ptr && ptr[0])
|
||||||
{
|
{
|
||||||
FBBFilter * PFilter;
|
FBBFilter * PFilter;
|
||||||
|
|
||||||
f.Action = ptr1[0];
|
f.Action = ptr[0];
|
||||||
f.Type = ptr1[2];
|
f.Type = ptr[2];
|
||||||
ptr1 = &ptr1[4];
|
ptr = &ptr[4];
|
||||||
|
|
||||||
memcpy(f.From, ptr1, 10);
|
memcpy(f.From, ptr, 10);
|
||||||
strlop(f.From, '|');
|
strlop(f.From, '|');
|
||||||
ptr1 = strlop(ptr1, '|');
|
ptr = strlop(ptr, '|');
|
||||||
|
|
||||||
memcpy(f.TO, ptr1, 10);
|
memcpy(f.TO, ptr, 10);
|
||||||
strlop(f.TO, '|');
|
strlop(f.TO, '|');
|
||||||
ptr1 = strlop(ptr1, '|');
|
ptr = strlop(ptr, '|');
|
||||||
|
|
||||||
memcpy(f.AT, ptr1, 10);
|
memcpy(f.AT, ptr, 10);
|
||||||
strlop(f.AT, '|');
|
strlop(f.AT, '|');
|
||||||
ptr1 = strlop(ptr1, '|');
|
ptr = strlop(ptr, '|');
|
||||||
|
|
||||||
memcpy(f.BID, ptr1, 10);
|
memcpy(f.BID, ptr, 10);
|
||||||
strlop(f.BID, '|');
|
strlop(f.BID, '|');
|
||||||
ptr1 = strlop(ptr1, '|');
|
ptr = strlop(ptr, '|');
|
||||||
|
|
||||||
f.MaxLen = atoi(ptr1);
|
f.MaxLen = atoi(ptr);
|
||||||
|
|
||||||
// add to list
|
// add to list
|
||||||
|
|
||||||
|
@ -10408,7 +10325,7 @@ BOOL GetConfig(char * ConfigName)
|
||||||
p->Next = PFilter;
|
p->Next = PFilter;
|
||||||
}
|
}
|
||||||
|
|
||||||
ptr1 = strlop(ptr1, '|');
|
ptr = strlop(ptr, '|');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -10546,7 +10463,7 @@ int Connected(int Stream)
|
||||||
char ConnectedMsg[] = "*** CONNECTED ";
|
char ConnectedMsg[] = "*** CONNECTED ";
|
||||||
char Msg[100];
|
char Msg[100];
|
||||||
char Title[100];
|
char Title[100];
|
||||||
int64_t Freq = 0;
|
int Freq = 0;
|
||||||
int Mode = 0;
|
int Mode = 0;
|
||||||
BPQVECSTRUC * SESS;
|
BPQVECSTRUC * SESS;
|
||||||
TRANSPORTENTRY * Sess1 = NULL, * Sess2;
|
TRANSPORTENTRY * Sess1 = NULL, * Sess2;
|
||||||
|
@ -11780,11 +11697,6 @@ VOID ProcessTextFwdLine(ConnectionInfo * conn, struct UserInfo * user, char * Bu
|
||||||
|
|
||||||
SaveMessageDatabase();
|
SaveMessageDatabase();
|
||||||
|
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(conn->FwdMsg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
conn->UserPointer->ForwardingInfo->MsgCount--;
|
conn->UserPointer->ForwardingInfo->MsgCount--;
|
||||||
|
|
||||||
// See if any more to forward
|
// See if any more to forward
|
||||||
|
@ -15892,11 +15804,6 @@ void SendMessageReadEvent(char * call, struct MsgInfo * Msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendMessageForwardedToM0LTE(char * call, struct MsgInfo * Msg)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void SendNewMessageEvent(char * call, struct MsgInfo * Msg)
|
void SendNewMessageEvent(char * call, struct MsgInfo * Msg)
|
||||||
{
|
{
|
||||||
if (reportMailEvents)
|
if (reportMailEvents)
|
||||||
|
|
Binary file not shown.
|
@ -162,7 +162,7 @@ BEGIN
|
||||||
WS_VSCROLL
|
WS_VSCROLL
|
||||||
DEFPUSHBUTTON "Save Welcome Message",SAVEWELCOME,140,296,91,14,
|
DEFPUSHBUTTON "Save Welcome Message",SAVEWELCOME,140,296,91,14,
|
||||||
BS_CENTER | BS_VCENTER
|
BS_CENTER | BS_VCENTER
|
||||||
LTEXT " If the node is not directly connectable (ie is not in your NODES table) you can add a connect script. This consists of a series of commands separared by |, eg NOTCHT:G8BPQ-4|C 3 GM8BPQ-9|CHAT",
|
LTEXT " If the node is not directly connectable (ie is not in your NODES table) you can add a connect script. This consists of a series of commands seperared by |, eg NOTCHT:G8BPQ-4|C 3 GM8BPQ-9|CHAT",
|
||||||
IDC_STATIC,9,52,355,24
|
IDC_STATIC,9,52,355,24
|
||||||
END
|
END
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,374 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="BPQChat"
|
||||||
|
ProjectGUID="{2BDD2C8A-2B4A-496C-A2EA-6B49AA0670B1}"
|
||||||
|
RootNamespace="BPQChat"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="0"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
CommandLine=""
|
||||||
|
Outputs=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="..\CInclude;..\CommonSource;..\BPQChat"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USE_32BIT_TIME_T"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="1"
|
||||||
|
EnableFunctionLevelLinking="true"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
CompileAs="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="..\lib\bpq32.lib wsock32.lib comctl32.lib winmm.lib ..\lib\libconfig.lib DbgHelp.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\BPQChat.exe"
|
||||||
|
LinkIncremental="2"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
ProgramDatabaseFile="$(IntDir)$(TargetName).pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="$(IntDir)\BBSListings\BPQChat.map"
|
||||||
|
MapExports="true"
|
||||||
|
SubSystem="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="0"
|
||||||
|
WholeProgramOptimization="1"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
CommandLine=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
CommandLine=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
WholeProgramOptimization="false"
|
||||||
|
AdditionalIncludeDirectories="..\CInclude;..\CommonSource;..\BPQChat"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USE_32BIT_TIME_T"
|
||||||
|
RuntimeLibrary="0"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
AssemblerOutput="2"
|
||||||
|
AssemblerListingLocation="$(IntDir)\BBSListings\"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="0"
|
||||||
|
CompileAs="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="..\lib\bpq32.lib wsock32.lib comctl32.lib winmm.lib ..\lib\libconfig.lib DbgHelp.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\BPQChat.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="false"
|
||||||
|
ProgramDatabaseFile="$(IntDir)$(TargetName).pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="$(IntDir)\BBSListings\BPQChat.map"
|
||||||
|
SubSystem="2"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
LinkTimeCodeGeneration="0"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\bpqchat.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ChatDebug.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ChatHTMLConfig.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ChatMonitor.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ChatMultiConsole.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ChatUtilities.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ChatUtils.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\HanksRT.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\HTMLCommonCode.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQChat.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -64,7 +64,7 @@ typedef struct _RTTMSG
|
||||||
|
|
||||||
} RTTMSG;
|
} RTTMSG;
|
||||||
|
|
||||||
int COUNTNODES(struct ROUTE * ROUTE);
|
extern int COUNTNODES();
|
||||||
|
|
||||||
VOID __cdecl Debugprintf(const char * format, ...);
|
VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
|
|
||||||
|
|
Binary file not shown.
32
BPQMail.c
32
BPQMail.c
|
@ -1138,13 +1138,6 @@
|
||||||
// Allow selection of 2 or 4 character country codes for forward processing (39)
|
// Allow selection of 2 or 4 character country codes for forward processing (39)
|
||||||
// Fix Send P to multiple BBS's when routing on HR (40)
|
// Fix Send P to multiple BBS's when routing on HR (40)
|
||||||
// Rewrite PG server code on Lunux (41)
|
// Rewrite PG server code on Lunux (41)
|
||||||
// Fix SendPToMultiple not stopping at Implied AT match (45)
|
|
||||||
// Log Our HA when checking for flood bulls (45)
|
|
||||||
// Semaphore calls to SaveConfig
|
|
||||||
// Include SERVIC as valid from call (for Winlink Service messages) (49)
|
|
||||||
// Attempt to detect line draw characters in Webmail (50)
|
|
||||||
// Fix sending ampr.org mail when RMS is not enabled (51)
|
|
||||||
// Send forwarding info to packetnodes.spots.radio database (51)
|
|
||||||
|
|
||||||
#include "bpqmail.h"
|
#include "bpqmail.h"
|
||||||
#include "winstdint.h"
|
#include "winstdint.h"
|
||||||
|
@ -1163,8 +1156,6 @@ FARPROCZ pGetLOC;
|
||||||
FARPROCX pRefreshWebMailIndex;
|
FARPROCX pRefreshWebMailIndex;
|
||||||
FARPROCX pRunEventProgram;
|
FARPROCX pRunEventProgram;
|
||||||
FARPROCX pGetPortFrequency;
|
FARPROCX pGetPortFrequency;
|
||||||
FARPROCX pSendWebRequest;
|
|
||||||
FARPROCX pGetLatLon;
|
|
||||||
|
|
||||||
BOOL WINE = FALSE;
|
BOOL WINE = FALSE;
|
||||||
|
|
||||||
|
@ -1389,7 +1380,6 @@ char * CheckToAddress(CIRCUIT * conn, char * Addr);
|
||||||
BOOL CheckifPacket(char * Via);
|
BOOL CheckifPacket(char * Via);
|
||||||
int GetHTMLForms();
|
int GetHTMLForms();
|
||||||
VOID GetPGConfig();
|
VOID GetPGConfig();
|
||||||
void SendBBSDataToPktMap();
|
|
||||||
|
|
||||||
struct _EXCEPTION_POINTERS exinfox;
|
struct _EXCEPTION_POINTERS exinfox;
|
||||||
|
|
||||||
|
@ -1400,7 +1390,7 @@ DWORD Stack[16];
|
||||||
|
|
||||||
BOOL Restarting = FALSE;
|
BOOL Restarting = FALSE;
|
||||||
|
|
||||||
void Dump_Process_State(struct _EXCEPTION_POINTERS * exinfo, char * Msg)
|
Dump_Process_State(struct _EXCEPTION_POINTERS * exinfo, char * Msg)
|
||||||
{
|
{
|
||||||
unsigned int SPPtr;
|
unsigned int SPPtr;
|
||||||
unsigned int SPVal;
|
unsigned int SPVal;
|
||||||
|
@ -1941,8 +1931,6 @@ BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
|
||||||
pRefreshWebMailIndex = GetProcAddress(ExtDriver,"_RefreshWebMailIndex@0");
|
pRefreshWebMailIndex = GetProcAddress(ExtDriver,"_RefreshWebMailIndex@0");
|
||||||
pRunEventProgram = GetProcAddress(ExtDriver,"_RunEventProgram@8");
|
pRunEventProgram = GetProcAddress(ExtDriver,"_RunEventProgram@8");
|
||||||
pGetPortFrequency = GetProcAddress(ExtDriver,"_GetPortFrequency@8");
|
pGetPortFrequency = GetProcAddress(ExtDriver,"_GetPortFrequency@8");
|
||||||
pSendWebRequest = GetProcAddress(ExtDriver,"_SendWebRequest@16");
|
|
||||||
pGetLatLon = GetProcAddress(ExtDriver,"_GetLatLon@8");
|
|
||||||
|
|
||||||
|
|
||||||
if (pGetLOC)
|
if (pGetLOC)
|
||||||
|
@ -2190,13 +2178,6 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
Debugprintf("|Enter HouseKeeping");
|
Debugprintf("|Enter HouseKeeping");
|
||||||
DoHouseKeeping(FALSE);
|
DoHouseKeeping(FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (APIClock < NOW)
|
|
||||||
{
|
|
||||||
SendBBSDataToPktMap();
|
|
||||||
APIClock = NOW + 7200; // Every 2 hours
|
|
||||||
}
|
|
||||||
|
|
||||||
tm = gmtime(&NOW);
|
tm = gmtime(&NOW);
|
||||||
|
|
||||||
if (tm->tm_wday == 0) // Sunday
|
if (tm->tm_wday == 0) // Sunday
|
||||||
|
@ -2830,12 +2811,6 @@ gotAddr:
|
||||||
|
|
||||||
EndDialog(hDlg, LOWORD(wParam));
|
EndDialog(hDlg, LOWORD(wParam));
|
||||||
|
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(Msg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3077,6 +3052,7 @@ static PSOCKADDR_IN psin;
|
||||||
SOCKET sock;
|
SOCKET sock;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
BOOL Initialise()
|
BOOL Initialise()
|
||||||
{
|
{
|
||||||
int i, len;
|
int i, len;
|
||||||
|
@ -3091,8 +3067,6 @@ BOOL Initialise()
|
||||||
|
|
||||||
GetTimeZoneInformation(&TimeZoneInformation);
|
GetTimeZoneInformation(&TimeZoneInformation);
|
||||||
|
|
||||||
Debugprintf("%d", sizeof(struct MsgInfo));
|
|
||||||
|
|
||||||
_tzset();
|
_tzset();
|
||||||
_MYTIMEZONE = timezone;
|
_MYTIMEZONE = timezone;
|
||||||
_MYTIMEZONE = TimeZoneInformation.Bias * 60;
|
_MYTIMEZONE = TimeZoneInformation.Bias * 60;
|
||||||
|
@ -3404,8 +3378,6 @@ BOOL Initialise()
|
||||||
CreatePipeThread();
|
CreatePipeThread();
|
||||||
GetPGConfig();
|
GetPGConfig();
|
||||||
|
|
||||||
APIClock = 0;
|
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1045,7 +1045,7 @@ BEGIN
|
||||||
CONTROL "Delete Log and Message Files to Recycle Bin",
|
CONTROL "Delete Log and Message Files to Recycle Bin",
|
||||||
IDC_DELETETORECYCLE,"Button",BS_AUTOCHECKBOX |
|
IDC_DELETETORECYCLE,"Button",BS_AUTOCHECKBOX |
|
||||||
BS_LEFTTEXT | BS_MULTILINE | WS_TABSTOP,5,142,115,20
|
BS_LEFTTEXT | BS_MULTILINE | WS_TABSTOP,5,142,115,20
|
||||||
CONTROL "Suppress Mailing of Housekeeping Results",
|
CONTROL "Supress Mailing of Housekeeping Results",
|
||||||
IDC_MAINTNOMAIL,"Button",BS_AUTOCHECKBOX | BS_LEFTTEXT |
|
IDC_MAINTNOMAIL,"Button",BS_AUTOCHECKBOX | BS_LEFTTEXT |
|
||||||
BS_MULTILINE | WS_TABSTOP,5,182,115,20
|
BS_MULTILINE | WS_TABSTOP,5,182,115,20
|
||||||
CONTROL "Generate Traffic Report",IDC_MAINTTRAFFIC,"Button",
|
CONTROL "Generate Traffic Report",IDC_MAINTTRAFFIC,"Button",
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||||
|
# Visual C++ Express 2005
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BPQMail", "BPQMail.vcproj", "{3766AA10-C777-4ED8-A83D-F1452DE9B665}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Win32 = Debug|Win32
|
||||||
|
Release|Win32 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{3766AA10-C777-4ED8-A83D-F1452DE9B665}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
|
{3766AA10-C777-4ED8-A83D-F1452DE9B665}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
|
{3766AA10-C777-4ED8-A83D-F1452DE9B665}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{3766AA10-C777-4ED8-A83D-F1452DE9B665}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
|
@ -0,0 +1,493 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="BPQMail"
|
||||||
|
ProjectGUID="{3766AA10-C777-4ED8-A83D-F1452DE9B665}"
|
||||||
|
RootNamespace="TelnetServer"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
UseOfMFC="0"
|
||||||
|
CharacterSet="0"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
CommandLine=""
|
||||||
|
Outputs=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="..\CKernel;..\CInclude;..\CommonSource;..\BPQMail"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USE_32BIT_TIME_T"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="1"
|
||||||
|
EnableFunctionLevelLinking="true"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
CompileAs="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="..\Include"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="..\lib\bpq32.lib wsock32.lib comctl32.lib winmm.lib ..\lib\libconfig.lib DbgHelp.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\BPQMail.exe"
|
||||||
|
LinkIncremental="2"
|
||||||
|
IgnoreAllDefaultLibraries="false"
|
||||||
|
IgnoreDefaultLibraryNames="LIBCMT"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
ProgramDatabaseFile="$(IntDir)$(TargetName).pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="$(IntDir)\BBSListings\bpqmail.map"
|
||||||
|
MapExports="true"
|
||||||
|
SubSystem="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="0"
|
||||||
|
WholeProgramOptimization="1"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
CommandLine=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
CommandLine=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
WholeProgramOptimization="false"
|
||||||
|
AdditionalIncludeDirectories="..\CKernel;..\CInclude;..\CommonSource;..\BPQMail"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USE_32BIT_TIME_T"
|
||||||
|
RuntimeLibrary="0"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
CompileAs="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="..\Include"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="..\lib\bpq32.lib wsock32.lib comctl32.lib winmm.lib ..\lib\libconfig.lib DbgHelp.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\BPQMail.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
ProgramDatabaseFile="c:\DevProgs\bpq32\BPQMail.pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="c:\DevProgs\bpq32\BPQMail.map"
|
||||||
|
SubSystem="2"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
LinkTimeCodeGeneration="0"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Alloc.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BBSHTMLConfig.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BBSUtilities.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerOutput="2"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQMail.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQMailConfig.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\CMSAuth.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\FBBRoutines.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Housekeeping.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HTMLCommonCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzFind.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\lzhuf32.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerOutput="2"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzmaDec.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzmaEnc.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzmaLib.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mailapi.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailCommands.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailDataDefs.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailRouting.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailTCP.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MBLRoutines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\Monitor.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Multicast.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\MultiConsole.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\NNTPRoutines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\UIRoutines.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\utf8Routines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\WebMail.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\WPRoutines.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||||
|
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\bpqmailrc.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Versions.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQMail.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,207 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<ProjectGuid>{3766AA10-C777-4ED8-A83D-F1452DE9B665}</ProjectGuid>
|
||||||
|
<RootNamespace>TelnetServer</RootNamespace>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>NotSet</CharacterSet>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<UseOfMfc>false</UseOfMfc>
|
||||||
|
<CharacterSet>NotSet</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<_ProjectFileVersion>15.0.28307.799</_ProjectFileVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<OutDir>C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(Configuration)\</OutDir>
|
||||||
|
<IntDir>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<OutDir>C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(Configuration)\</OutDir>
|
||||||
|
<IntDir>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<CustomBuildStep>
|
||||||
|
<Command />
|
||||||
|
</CustomBuildStep>
|
||||||
|
<ClCompile>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<AdditionalIncludeDirectories>..\CKernel;..\CInclude;..\CommonSource;..\BPQMail;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<PrecompiledHeader />
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
|
</ClCompile>
|
||||||
|
<ResourceCompile>
|
||||||
|
<AdditionalIncludeDirectories>..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
</ResourceCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalDependencies>..\lib\bpq32.lib;wsock32.lib;comctl32.lib;winmm.lib;..\lib\libconfig.lib;DbgHelp.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>c:\DevProgs\bpq32\BPQMail.exe</OutputFile>
|
||||||
|
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
|
||||||
|
<IgnoreSpecificDefaultLibraries>LIBCMT;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<ProgramDatabaseFile>$(IntDir)$(TargetName).pdb</ProgramDatabaseFile>
|
||||||
|
<GenerateMapFile>true</GenerateMapFile>
|
||||||
|
<MapFileName>$(IntDir)BBSListings\bpqmail.map</MapFileName>
|
||||||
|
<MapExports>true</MapExports>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<PreBuildEvent>
|
||||||
|
<Command />
|
||||||
|
</PreBuildEvent>
|
||||||
|
<CustomBuildStep>
|
||||||
|
<Command />
|
||||||
|
</CustomBuildStep>
|
||||||
|
<ClCompile>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||||
|
<AdditionalIncludeDirectories>..\CKernel;..\CInclude;..\CommonSource;..\BPQMail;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
<PrecompiledHeader />
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
|
<CompileAs>CompileAsC</CompileAs>
|
||||||
|
</ClCompile>
|
||||||
|
<ResourceCompile>
|
||||||
|
<AdditionalIncludeDirectories>..\Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
</ResourceCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalDependencies>..\lib\bpq32.lib;wsock32.lib;comctl32.lib;winmm.lib;..\lib\libconfig.lib;DbgHelp.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>c:\DevProgs\bpq32\BPQMail.exe</OutputFile>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<ProgramDatabaseFile>c:\DevProgs\bpq32\BPQMail.pdb</ProgramDatabaseFile>
|
||||||
|
<GenerateMapFile>true</GenerateMapFile>
|
||||||
|
<MapFileName>c:\DevProgs\bpq32\BPQMail.map</MapFileName>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<LinkTimeCodeGeneration />
|
||||||
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="Alloc.c" />
|
||||||
|
<ClCompile Include="BBSHTMLConfig.c" />
|
||||||
|
<ClCompile Include="BBSUtilities.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">All</AssemblerOutput>
|
||||||
|
<AssemblerListingLocation Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)</AssemblerListingLocation>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQMail.c" />
|
||||||
|
<ClCompile Include="BPQMailConfig.c" />
|
||||||
|
<ClCompile Include="CMSAuth.c" />
|
||||||
|
<ClCompile Include="FBBRoutines.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Housekeeping.c" />
|
||||||
|
<ClCompile Include="HTMLCommonCode.c" />
|
||||||
|
<ClCompile Include="LzFind.c" />
|
||||||
|
<ClCompile Include="lzhuf32.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">All</AssemblerOutput>
|
||||||
|
<AssemblerListingLocation Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)</AssemblerListingLocation>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzmaDec.c" />
|
||||||
|
<ClCompile Include="LzmaEnc.c" />
|
||||||
|
<ClCompile Include="LzmaLib.c" />
|
||||||
|
<ClCompile Include="MailCommands.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailDataDefs.c" />
|
||||||
|
<ClCompile Include="MailRouting.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailTCP.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MBLRoutines.c" />
|
||||||
|
<ClCompile Include="Monitor.c" />
|
||||||
|
<ClCompile Include="Multicast.c" />
|
||||||
|
<ClCompile Include="MultiConsole.c" />
|
||||||
|
<ClCompile Include="NNTPRoutines.c" />
|
||||||
|
<ClCompile Include="UIRoutines.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="utf8Routines.c" />
|
||||||
|
<ClCompile Include="WebMail.c" />
|
||||||
|
<ClCompile Include="WPRoutines.c">
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.obj</ObjectFileName>
|
||||||
|
<XMLDocumentationFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)%(Filename)1.xdc</XMLDocumentationFileName>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="bpqmailrc.h" />
|
||||||
|
<ClInclude Include="Versions.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="BPQMail.rc" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
|
@ -0,0 +1,113 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="Alloc.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BBSHTMLConfig.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BBSUtilities.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQMail.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQMailConfig.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="CMSAuth.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="FBBRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Housekeeping.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HTMLCommonCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzFind.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="lzhuf32.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzmaDec.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzmaEnc.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzmaLib.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailCommands.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailDataDefs.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailRouting.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailTCP.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MBLRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Monitor.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Multicast.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MultiConsole.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="NNTPRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="UIRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="utf8Routines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WebMail.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WPRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="bpqmailrc.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Versions.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="BPQMail.rc">
|
||||||
|
<Filter>Resource Files</Filter>
|
||||||
|
</ResourceCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
|
@ -0,0 +1,228 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="BPQRemotePTT"
|
||||||
|
ProjectGUID="{E9A342AF-65CF-4E38-9079-216264179675}"
|
||||||
|
RootNamespace="BPQRemotePTT"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory=".\xxx"
|
||||||
|
IntermediateDirectory="c:\dev\msdev2005\intermed\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||||
|
UseOfMFC="0"
|
||||||
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
PreprocessorDefinitions="_DEBUG"
|
||||||
|
MkTypLibCompatible="true"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
TargetEnvironment="1"
|
||||||
|
TypeLibraryName=".\Debug/BPQRemotePTT.tlb"
|
||||||
|
HeaderFileName=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
RuntimeLibrary="1"
|
||||||
|
PrecompiledHeaderFile=".\Debug/BPQRemotePTT.pch"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
ProgramDataBaseFileName="$(IntDir)\"
|
||||||
|
WarningLevel="3"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="_DEBUG"
|
||||||
|
Culture="2057"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="WS2_32.Lib Psapi.lib ..\lib\libconfigd.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\BPQRemotePTT.exe"
|
||||||
|
LinkIncremental="2"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
ProgramDatabaseFile=".\Debug/bpq32.pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="c:\devprogs\bpq32\bpqpp.map"
|
||||||
|
SubSystem="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
OutputFile=".\Debug/BPQRemotePTT.bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory=".\xxx"
|
||||||
|
IntermediateDirectory="c:\msdev2005\intermed\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||||
|
UseOfMFC="0"
|
||||||
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
PreprocessorDefinitions="NDEBUG"
|
||||||
|
MkTypLibCompatible="true"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
TargetEnvironment="1"
|
||||||
|
TypeLibraryName=".\Release/BPQRemotePTT.tlb"
|
||||||
|
HeaderFileName=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
InlineFunctionExpansion="1"
|
||||||
|
AdditionalIncludeDirectories="..\cinclude"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
|
||||||
|
StringPooling="true"
|
||||||
|
RuntimeLibrary="0"
|
||||||
|
EnableFunctionLevelLinking="true"
|
||||||
|
PrecompiledHeaderFile="C:\msdev2005\Intermed\Release/BPQRemotePTT.pch"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
ProgramDataBaseFileName="$(IntDir)\"
|
||||||
|
WarningLevel="3"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="NDEBUG"
|
||||||
|
Culture="2057"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="WS2_32.Lib Psapi.lib ..\lib\libconfig.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\BPQRemotePTT.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
ProgramDatabaseFile=".\Release/BPQRemotePTT.pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="c:\devprogs\bpq32\BPQRemotePTT.map"
|
||||||
|
SubSystem="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
OutputFile=".\Release/BPQRemotePTT.bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQRemotePTT.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQRemotePTT.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -214,7 +214,7 @@ LRESULT APIENTRY InputProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) ;
|
||||||
LRESULT APIENTRY MonProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) ;
|
LRESULT APIENTRY MonProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) ;
|
||||||
|
|
||||||
|
|
||||||
extern struct CMDX COMMANDS[];
|
extern CMDX COMMANDS[];
|
||||||
extern int APPL1;
|
extern int APPL1;
|
||||||
|
|
||||||
static HMENU trayMenu;
|
static HMENU trayMenu;
|
||||||
|
|
|
@ -0,0 +1,230 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="BPQWinAPP"
|
||||||
|
ProjectGUID="{005A91EA-3A00-4FB4-ADD9-EB78DBFA2B81}"
|
||||||
|
RootNamespace="BPQWinAPP"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev200\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||||
|
UseOfMFC="0"
|
||||||
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
PreprocessorDefinitions="_DEBUG"
|
||||||
|
MkTypLibCompatible="true"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
TargetEnvironment="1"
|
||||||
|
TypeLibraryName=".\Debug/BPQWinAPP.tlb"
|
||||||
|
HeaderFileName=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="C:\Users\johnw\OneDrive\Dev\Source\bpq32\Commonsource;C:\Users\johnw\OneDrive\Dev\Source\bpq32\CInclude"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
RuntimeLibrary="1"
|
||||||
|
PrecompiledHeaderFile=".\Debug/BPQWinAPP.pch"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
ProgramDataBaseFileName="$(IntDir)\"
|
||||||
|
WarningLevel="3"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="_DEBUG"
|
||||||
|
Culture="2057"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="..\lib\bpq32.lib DbgHelp.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\bpq32.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
ProgramDatabaseFile=".\Debug/bpq32.pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
SubSystem="2"
|
||||||
|
StackReserveSize="0"
|
||||||
|
StackCommitSize="0"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
OutputFile=".\Debug/BPQWinAPP.bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||||
|
UseOfMFC="0"
|
||||||
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
PreprocessorDefinitions="NDEBUG"
|
||||||
|
MkTypLibCompatible="true"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
TargetEnvironment="1"
|
||||||
|
TypeLibraryName=".\Release/BPQWinAPP.tlb"
|
||||||
|
HeaderFileName=""
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="2"
|
||||||
|
InlineFunctionExpansion="1"
|
||||||
|
AdditionalIncludeDirectories="C:\Users\johnw\OneDrive\Dev\Source\bpq32\Commonsource"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
|
||||||
|
StringPooling="true"
|
||||||
|
RuntimeLibrary="0"
|
||||||
|
EnableFunctionLevelLinking="true"
|
||||||
|
PrecompiledHeaderFile="C:\msdev2005\Intermed\Release/BPQWinAPP.pch"
|
||||||
|
AssemblerListingLocation="$(IntDir)\"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
ProgramDataBaseFileName="$(IntDir)\"
|
||||||
|
WarningLevel="3"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="NDEBUG"
|
||||||
|
Culture="2057"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="..\lib\bpq32.lib DbgHelp.lib"
|
||||||
|
OutputFile="c:\DevProgs\bpq32\bpq32.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
ProgramDatabaseFile=".\Release/bpq32.pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="c:\DevProgs\bpq32\bpq32app.map"
|
||||||
|
SubSystem="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
SuppressStartupBanner="true"
|
||||||
|
OutputFile=".\Release/BPQWinAPP.bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQWinAPP.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQWinAPP.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="LAPTOP-Q6S4RP5Q"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="LAPTOP-Q6S4RP5Q"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -87,7 +87,7 @@ void CreateMHWindow();
|
||||||
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
||||||
|
|
||||||
static BOOL ReadConfigFile(int Port);
|
static BOOL ReadConfigFile(int Port);
|
||||||
int ConnecttoAGW(int port);
|
int ConnecttoAGW();
|
||||||
int ProcessReceivedData(int bpqport);
|
int ProcessReceivedData(int bpqport);
|
||||||
static int ProcessLine(char * buf, int Port, BOOL CheckPort);
|
static int ProcessLine(char * buf, int Port, BOOL CheckPort);
|
||||||
|
|
||||||
|
|
38
Bpq32.c
38
Bpq32.c
|
@ -1086,7 +1086,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
// Add ? and * wildcards to NODES command (74)
|
// Add ? and * wildcards to NODES command (74)
|
||||||
// Add Port RADIO config parameter (74)
|
// Add Port RADIO config parameter (74)
|
||||||
|
|
||||||
// Version 6.0.24.1 August 2023
|
// Version 6.0.24.1 August 2024
|
||||||
|
|
||||||
// Apply NODES command wildcard to alias as well a call (2)
|
// Apply NODES command wildcard to alias as well a call (2)
|
||||||
// Add STOPPORT/STARTPORT to VARA Driver (2)
|
// Add STOPPORT/STARTPORT to VARA Driver (2)
|
||||||
|
@ -1212,6 +1212,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
// Add NodeAPI call sendLinks and remove get from other calls (32)
|
// Add NodeAPI call sendLinks and remove get from other calls (32)
|
||||||
// Improve validation of Web Beacon Config (33)
|
// Improve validation of Web Beacon Config (33)
|
||||||
// Support SNMP via host ip stack as well as IPGateway (34)
|
// Support SNMP via host ip stack as well as IPGateway (34)
|
||||||
|
|
||||||
// Switch APRS Map to OSM tile servers (36)
|
// Switch APRS Map to OSM tile servers (36)
|
||||||
// Fix potential buffer overflow in Telnet login (36)
|
// Fix potential buffer overflow in Telnet login (36)
|
||||||
// Allow longer serial device names (37)
|
// Allow longer serial device names (37)
|
||||||
|
@ -1221,24 +1222,8 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
// Change default of SECURETELNET to 1 (41)
|
// Change default of SECURETELNET to 1 (41)
|
||||||
// Add optional ATTACH time limit for ARDOP (42)
|
// Add optional ATTACH time limit for ARDOP (42)
|
||||||
// Fix buffer overflow risk in HTTP Terminal(42)
|
// Fix buffer overflow risk in HTTP Terminal(42)
|
||||||
// Fix KISSHF Interlock (43)
|
|
||||||
// Support other than channel A on HFKISS (43)
|
|
||||||
// Support additional port info reporting for M0LTE Map (44)
|
|
||||||
// Allow interlocking of KISS and Session mode ports (eg ARDOP and VARA) (45)
|
|
||||||
// Add ARDOP UI Packets to MH (45)
|
|
||||||
// Add support for Qtsm Mgmt Interface (45)
|
|
||||||
// NodeAPI improvements (46)
|
|
||||||
// Add MQTT Interface (46)
|
|
||||||
// Fix buffer leak in ARDOP code(46)
|
|
||||||
// Fix possible crash if MQTT not in use (47)
|
|
||||||
// Add optional ATTACH time limit for VARA (48)
|
|
||||||
// API format fixes (48)
|
|
||||||
// AGWAPI Add protection against accidental connects from a non-agw application (50)
|
|
||||||
// Save MH and NODES every hour (51)
|
|
||||||
// Fix handling long unix device names (now max 250 bytes) (52)
|
|
||||||
// Fix error reporting in api update (53)
|
|
||||||
// Coding changes to remove some compiler warnings (53, 54)
|
|
||||||
// Add MQTT reporting o
|
|
||||||
|
|
||||||
#define CKernel
|
#define CKernel
|
||||||
|
|
||||||
|
@ -1379,9 +1364,6 @@ extern struct _LINKTABLE * LINKS;
|
||||||
extern int LINK_TABLE_LEN;
|
extern int LINK_TABLE_LEN;
|
||||||
extern int MAXLINKS;
|
extern int MAXLINKS;
|
||||||
|
|
||||||
extern double LatFromLOC;
|
|
||||||
extern double LonFromLOC;
|
|
||||||
|
|
||||||
|
|
||||||
extern int BPQHOSTAPI();
|
extern int BPQHOSTAPI();
|
||||||
extern int INITIALISEPORTS();
|
extern int INITIALISEPORTS();
|
||||||
|
@ -3076,7 +3058,7 @@ SkipInit:
|
||||||
|
|
||||||
if (AttachedProcesses < 2)
|
if (AttachedProcesses < 2)
|
||||||
{
|
{
|
||||||
if (AUTOSAVE)
|
if (AUTOSAVE == 1)
|
||||||
SaveNodes();
|
SaveNodes();
|
||||||
if (AUTOSAVEMH)
|
if (AUTOSAVEMH)
|
||||||
SaveMH();
|
SaveMH();
|
||||||
|
@ -6629,19 +6611,11 @@ int GetListeningPortsPID(int Port)
|
||||||
return 0; // Not found
|
return 0; // Not found
|
||||||
}
|
}
|
||||||
|
|
||||||
DllExport char * APIENTRY GetLOC()
|
DllExport char * APIENTRY GetLOC()
|
||||||
{
|
{
|
||||||
return LOC;
|
return LOC;
|
||||||
}
|
}
|
||||||
|
|
||||||
DllExport void APIENTRY GetLatLon(double * lat, double * lon)
|
|
||||||
{
|
|
||||||
*lat = LatFromLOC;
|
|
||||||
*lon = LonFromLOC;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// UZ7HO Dll PTT interface
|
// UZ7HO Dll PTT interface
|
||||||
|
|
||||||
// 1 ext_PTT_info
|
// 1 ext_PTT_info
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,625 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="CBPQ32"
|
||||||
|
ProjectGUID="{8EFA1E59-8654-4A23-8102-AA77A074D57C}"
|
||||||
|
RootNamespace="CBPQ32"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
<DefaultToolFile
|
||||||
|
FileName="masm.rules"
|
||||||
|
/>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="d:\devprogs\bpq32"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="2"
|
||||||
|
CharacterSet="0"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="MASM"
|
||||||
|
PreserveIdentifierCase="3"
|
||||||
|
IncludePaths="..\CInclude"
|
||||||
|
EnableMASM51Compatibility="true"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="..\CInclude;..\CommonSource;..\CKernel"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;BPQ32_EXPORTS;MDIKERNEL;_USE_32BIT_TIME_T;BPQ32"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="1"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
AssemblerOutput="2"
|
||||||
|
AssemblerListingLocation="c:\devprogs\bpq32\listings\debug\"
|
||||||
|
BrowseInformation="1"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalOptions=" /section:_BPQDATA,srw"
|
||||||
|
AdditionalDependencies="WS2_32.Lib winmm.lib DbgHelp.lib comctl32.lib Iphlpapi.lib setupapi.lib ..\lib\libconfigd.lib miniupnpc.lib zlibstat.lib"
|
||||||
|
OutputFile="c:\DevProgs\BPQ32\bpq32.dll"
|
||||||
|
LinkIncremental="2"
|
||||||
|
IgnoreAllDefaultLibraries="false"
|
||||||
|
IgnoreDefaultLibraryNames="LIBCMTD.lib"
|
||||||
|
ModuleDefinitionFile="..\CommonSource\bpq32.def"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="c:\DevProgs\BPQ32\bpqdev.map"
|
||||||
|
MapExports="true"
|
||||||
|
SubSystem="2"
|
||||||
|
HeapCommitSize="8000000"
|
||||||
|
StackCommitSize="4000000"
|
||||||
|
EnableCOMDATFolding="1"
|
||||||
|
EntryPointSymbol=""
|
||||||
|
BaseAddress="0x42000000"
|
||||||
|
ImportLibrary="..\lib\bpq32.lib"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
OutputFile="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ConfigurationName)\$(ProjectName).bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
CommandLine=""C:\Program Files\7-Zip\7z.exe" a C:\DevProgs\BPQ32\bpq32.zip C:\DevProgs\BPQ32\bpq32.dll && myxcopy /y c:\DevProgs\BPQ32\bpq32.dll c:\windows\SysWOW64\bpq32.dll && del C:\DevProgs\BPQ32\bpq32.dll"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="2"
|
||||||
|
CharacterSet="0"
|
||||||
|
WholeProgramOptimization="0"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="MASM"
|
||||||
|
PreserveIdentifierCase="3"
|
||||||
|
AssembledCodeListingFile="$(IntDir)\$(InputName)"
|
||||||
|
IncludePaths="..\CInclude"
|
||||||
|
ListAllAvailableInformation="true"
|
||||||
|
EnableAssemblyGeneratedCodeListing="true"
|
||||||
|
EnableFalseConditionalsInListing="true"
|
||||||
|
EnableMASM51Compatibility="true"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AdditionalOptions="/D "MDIKERNEL""
|
||||||
|
Optimization="0"
|
||||||
|
WholeProgramOptimization="false"
|
||||||
|
AdditionalIncludeDirectories="..\CInclude;..\CommonSource;..\CKernel"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;BPQ32_EXPORTS;MDIKERNEL;_USE_32BIT_TIME_T"
|
||||||
|
RuntimeLibrary="0"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
AssemblerOutput="2"
|
||||||
|
AssemblerListingLocation="c:\devprogs\bpq32\listings\"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalOptions=" /section:_BPQDATA,srw"
|
||||||
|
AdditionalDependencies="WS2_32.Lib winmm.lib comctl32.lib setupapi.lib ..\lib\libconfig.lib miniupnpc.lib zlibstat.lib DbgHelp.lib"
|
||||||
|
OutputFile="C:\DevProgs\BPQ32\bpq32.dll"
|
||||||
|
LinkIncremental="1"
|
||||||
|
IgnoreDefaultLibraryNames=""
|
||||||
|
ModuleDefinitionFile="..\CommonSource\bpq32.def"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
ProgramDatabaseFile="c:\DevProgs\BPQ32\bpq32.pdb"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="c:\DevProgs\BPQ32\bpqpdn.map"
|
||||||
|
MapExports="true"
|
||||||
|
SubSystem="2"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
LinkTimeCodeGeneration="0"
|
||||||
|
BaseAddress="0x42000000"
|
||||||
|
ImportLibrary="C:\Dev\Msdev2005\Projects\BPQ32\lib\bpq32.lib"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
OutputFile="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ConfigurationName)\$(ProjectName).bsc"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
CommandLine=""C:\Program Files\7-Zip\7z.exe" a C:\DevProgs\BPQ32\bpq32.zip C:\DevProgs\BPQ32\bpq32.dll && myxcopy /y c:\DevProgs\BPQ32\bpq32.dll c:\windows\SysWOW64\bpq32.dll && del C:\DevProgs\BPQ32\bpq32.dll"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\6pack.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\adif.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\AEAPactor.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\AGWAPI.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\AGWMoncode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\AISCommon.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\APRSCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\APRSIconData.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\APRSStdPages.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\ARDOP.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\asmDOSAPI.asm"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\base64.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Bpq32.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqaxip.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqether.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqhdlc.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BPQINP3.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BPQNRR.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\BPQTermMDI.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BPQtoAGW.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqvkiss.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\cMain.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Cmd.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerOutput="0"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\CMSAuth.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerOutput="0"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\CommonCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\compatbits.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\config.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\datadefs.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\DOSAPI.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\DRATS.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\Events.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\FLDigi.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\FreeDATA.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HALDriver.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HFCommon.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\hid.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\HSMODEM.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HTTPcode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\IPCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\KAMPactor.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\kiss.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\KISSHF.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\L2Code.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\L3Code.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\L4Code.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\md5.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Moncode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MULTIPSK.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nodeapi.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\png.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngerror.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngget.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngmem.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngread.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngrio.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngrtran.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngrutil.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngset.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngtrans.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngvcrd.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwio.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwrite.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwtran.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwutil.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\PortMapper.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\RigControl.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SCSPactor.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SCSTrackeMulti.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SCSTracker.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SerialPort.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\TelnetV6.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\TNCCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\TNCEmulators.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\UIARQ.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\upnp.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\utf8Routines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\UZ7HODrv.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\V4.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\VARA.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\WINMOR.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\WinRPR.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\asmstrucs.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpq32.def"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\CHeaders.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\compatbits.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CKernel\kernelresource.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CInclude\Strucs.inc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Versions.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\KernelScript1.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="C:\Devprogs\BPQ32\bpq32.exe"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="LAPTOP-Q6S4RP5Q"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command=""
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="LAPTOP-Q6S4RP5Q"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="C:\Devprogs\BPQ32\bpq32.exe"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="C:\Devprogs\BPQ32\bpq32.exe"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="C:\DevProgs\BPQ32\bpq32.exe"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command=""
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,232 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<ProjectGuid>{8EFA1E59-8654-4A23-8102-AA77A074D57C}</ProjectGuid>
|
||||||
|
<RootNamespace>CBPQ32</RootNamespace>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>NotSet</CharacterSet>
|
||||||
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<_ProjectFileVersion>15.0.28127.55</_ProjectFileVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
||||||
|
<IntDir>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(Configuration)\</IntDir>
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
|
||||||
|
<IntDir>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(Configuration)\</IntDir>
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<MASM>
|
||||||
|
<PreserveIdentifierCase>3</PreserveIdentifierCase>
|
||||||
|
<IncludePaths>..\CInclude</IncludePaths>
|
||||||
|
<EnableMASM51Compatibility>true</EnableMASM51Compatibility>
|
||||||
|
</MASM>
|
||||||
|
<ClCompile>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<AdditionalIncludeDirectories>..\CInclude;..\CommonSource;..\CKernel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;BPQ32_EXPORTS;MDIKERNEL;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
|
<PrecompiledHeader />
|
||||||
|
<AssemblerOutput>All</AssemblerOutput>
|
||||||
|
<AssemblerListingLocation>c:\devprogs\bpq32\listings\debug\</AssemblerListingLocation>
|
||||||
|
<BrowseInformation>true</BrowseInformation>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalOptions> /section:_BPQDATA,srw %(AdditionalOptions)</AdditionalOptions>
|
||||||
|
<AdditionalDependencies>WS2_32.Lib;winmm.lib;DbgHelp.lib;comctl32.lib;Iphlpapi.lib;setupapi.lib;..\lib\libconfig.lib;miniupnpc.lib;zlibstat.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>c:\DevProgs\BPQ32\bpq32.dll</OutputFile>
|
||||||
|
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
|
||||||
|
<IgnoreSpecificDefaultLibraries>LIBCMTD.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||||
|
<ModuleDefinitionFile>..\CommonSource\bpq32.def</ModuleDefinitionFile>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<GenerateMapFile>true</GenerateMapFile>
|
||||||
|
<MapFileName>c:\DevProgs\BPQ32\bpqdev.map</MapFileName>
|
||||||
|
<MapExports>true</MapExports>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<HeapCommitSize>8000000</HeapCommitSize>
|
||||||
|
<StackCommitSize>4000000</StackCommitSize>
|
||||||
|
<EnableCOMDATFolding>false</EnableCOMDATFolding>
|
||||||
|
<EntryPointSymbol />
|
||||||
|
<BaseAddress>0x42000000</BaseAddress>
|
||||||
|
<ImportLibrary>..\lib\bpq32.lib</ImportLibrary>
|
||||||
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
|
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
||||||
|
</Link>
|
||||||
|
<Bscmake>
|
||||||
|
<OutputFile>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(Configuration)\$(ProjectName).bsc</OutputFile>
|
||||||
|
</Bscmake>
|
||||||
|
<PostBuildEvent>
|
||||||
|
<Command>"C:\Program Files\7-Zip\7z.exe" a C:\DevProgs\BPQ32\bpq32.zip C:\DevProgs\BPQ32\bpq32.dll && myxcopy /y c:\DevProgs\BPQ32\bpq32.dll c:\windows\SysWOW64\bpq32.dll && del C:\DevProgs\BPQ32\bpq32.dll</Command>
|
||||||
|
</PostBuildEvent>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<MASM>
|
||||||
|
<PreserveIdentifierCase>3</PreserveIdentifierCase>
|
||||||
|
<AssembledCodeListingFile>$(IntDir)$(ProjectName)</AssembledCodeListingFile>
|
||||||
|
<IncludePaths>..\CInclude</IncludePaths>
|
||||||
|
<ListAllAvailableInformation>true</ListAllAvailableInformation>
|
||||||
|
<EnableAssemblyGeneratedCodeListing>true</EnableAssemblyGeneratedCodeListing>
|
||||||
|
<EnableFalseConditionalsInListing>true</EnableFalseConditionalsInListing>
|
||||||
|
<EnableMASM51Compatibility>true</EnableMASM51Compatibility>
|
||||||
|
</MASM>
|
||||||
|
<ClCompile>
|
||||||
|
<AdditionalOptions>/D "MDIKERNEL" %(AdditionalOptions)</AdditionalOptions>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||||
|
<AdditionalIncludeDirectories>..\CInclude;..\CommonSource;..\CKernel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;BPQ32_EXPORTS;MDIKERNEL;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
<PrecompiledHeader />
|
||||||
|
<AssemblerOutput>All</AssemblerOutput>
|
||||||
|
<AssemblerListingLocation>c:\devprogs\bpq32\listings\</AssemblerListingLocation>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalOptions> /section:_BPQDATA,srw %(AdditionalOptions)</AdditionalOptions>
|
||||||
|
<AdditionalDependencies>WS2_32.Lib;winmm.lib;DbgHelp.lib;comctl32.lib;setupapi.lib;..\lib\libconfig.lib;miniupnpc.lib;zlibstat.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>C:\DevProgs\BPQ32\bpq32.dll</OutputFile>
|
||||||
|
<ModuleDefinitionFile>..\CommonSource\bpq32.def</ModuleDefinitionFile>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<ProgramDatabaseFile>c:\DevProgs\BPQ32\bpq32.pdb</ProgramDatabaseFile>
|
||||||
|
<GenerateMapFile>true</GenerateMapFile>
|
||||||
|
<MapFileName>c:\DevProgs\BPQ32\bpqpdn.map</MapFileName>
|
||||||
|
<MapExports>true</MapExports>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<LinkTimeCodeGeneration />
|
||||||
|
<BaseAddress>0x42000000</BaseAddress>
|
||||||
|
<ImportLibrary>C:\Dev\Msdev2005\Projects\BPQ32\lib\bpq32.lib</ImportLibrary>
|
||||||
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
|
</Link>
|
||||||
|
<Bscmake>
|
||||||
|
<OutputFile>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(Configuration)\$(ProjectName).bsc</OutputFile>
|
||||||
|
</Bscmake>
|
||||||
|
<PostBuildEvent>
|
||||||
|
<Command>"C:\Program Files\7-Zip\7z.exe" a C:\DevProgs\BPQ32\bpq32.zip C:\DevProgs\BPQ32\bpq32.dll && myxcopy /y c:\DevProgs\BPQ32\bpq32.dll c:\windows\SysWOW64\bpq32.dll && del C:\DevProgs\BPQ32\bpq32.dll</Command>
|
||||||
|
</PostBuildEvent>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="adif.c" />
|
||||||
|
<ClCompile Include="AEAPactor.c" />
|
||||||
|
<ClCompile Include="AGWAPI.c" />
|
||||||
|
<ClCompile Include="AGWMoncode.c" />
|
||||||
|
<ClCompile Include="AISCommon.c" />
|
||||||
|
<ClCompile Include="APRSCode.c" />
|
||||||
|
<ClCompile Include="APRSStdPages.c" />
|
||||||
|
<ClCompile Include="ARDOP.c" />
|
||||||
|
<ClCompile Include="Bpq32.c" />
|
||||||
|
<ClCompile Include="bpqaxip.c" />
|
||||||
|
<ClCompile Include="bpqether.c" />
|
||||||
|
<ClCompile Include="bpqhdlc.c" />
|
||||||
|
<ClCompile Include="BPQINP3.c" />
|
||||||
|
<ClCompile Include="BPQNRR.c" />
|
||||||
|
<ClCompile Include="BPQTermMDI.c" />
|
||||||
|
<ClCompile Include="BPQtoAGW.c" />
|
||||||
|
<ClCompile Include="bpqvkiss.c" />
|
||||||
|
<ClCompile Include="cMain.c" />
|
||||||
|
<ClCompile Include="Cmd.c" />
|
||||||
|
<ClCompile Include="CMSAuth.c" />
|
||||||
|
<ClCompile Include="CommonCode.c" />
|
||||||
|
<ClCompile Include="compatbits.c" />
|
||||||
|
<ClCompile Include="config.c" />
|
||||||
|
<ClCompile Include="datadefs.c" />
|
||||||
|
<ClCompile Include="DOSAPI.c" />
|
||||||
|
<ClCompile Include="FLDigi.c" />
|
||||||
|
<ClCompile Include="HALDriver.c" />
|
||||||
|
<ClCompile Include="HFCommon.c" />
|
||||||
|
<ClCompile Include="hid.c" />
|
||||||
|
<ClCompile Include="HSMODEM.c" />
|
||||||
|
<ClCompile Include="HTTPcode.c" />
|
||||||
|
<ClCompile Include="IPCode.c" />
|
||||||
|
<ClCompile Include="KAMPactor.c" />
|
||||||
|
<ClCompile Include="kiss.c" />
|
||||||
|
<ClCompile Include="KISSHF.c" />
|
||||||
|
<ClCompile Include="L2Code.c" />
|
||||||
|
<ClCompile Include="L3Code.c" />
|
||||||
|
<ClCompile Include="L4Code.c" />
|
||||||
|
<ClCompile Include="md5.c" />
|
||||||
|
<ClCompile Include="Moncode.c" />
|
||||||
|
<ClCompile Include="MULTIPSK.c" />
|
||||||
|
<ClCompile Include="PortMapper.c" />
|
||||||
|
<ClCompile Include="RigControl.c" />
|
||||||
|
<ClCompile Include="SCSPactor.c" />
|
||||||
|
<ClCompile Include="SCSTrackeMulti.c" />
|
||||||
|
<ClCompile Include="SCSTracker.c" />
|
||||||
|
<ClCompile Include="SerialPort.c" />
|
||||||
|
<ClCompile Include="TelnetV6.c" />
|
||||||
|
<ClCompile Include="TNCCode.c" />
|
||||||
|
<ClCompile Include="TNCEmulators.c" />
|
||||||
|
<ClCompile Include="UIARQ.c" />
|
||||||
|
<ClCompile Include="upnp.c" />
|
||||||
|
<ClCompile Include="utf8Routines.c" />
|
||||||
|
<ClCompile Include="UZ7HODrv.c" />
|
||||||
|
<ClCompile Include="V4.c" />
|
||||||
|
<ClCompile Include="VARA.c" />
|
||||||
|
<ClCompile Include="WINMOR.c" />
|
||||||
|
<ClCompile Include="WinRPR.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<MASM Include="asmDOSAPI.asm" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="..\CKernel\kernelresource.h" />
|
||||||
|
<ClInclude Include="asmstrucs.h" />
|
||||||
|
<ClInclude Include="CHeaders.h" />
|
||||||
|
<ClInclude Include="compatbits.h" />
|
||||||
|
<ClInclude Include="Versions.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="..\CInclude\Strucs.inc" />
|
||||||
|
<None Include="bpq32.def" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="KernelScript1.rc" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
|
@ -0,0 +1,228 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="adif.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AEAPactor.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AGWAPI.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AGWMoncode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AISCommon.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="APRSCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="APRSStdPages.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="ARDOP.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Bpq32.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqaxip.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqether.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqhdlc.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQINP3.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQNRR.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQTermMDI.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQtoAGW.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqvkiss.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="cMain.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Cmd.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="CMSAuth.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="CommonCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="compatbits.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="config.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="datadefs.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="DOSAPI.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="FLDigi.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HALDriver.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HFCommon.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="hid.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HSMODEM.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HTTPcode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="IPCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="KAMPactor.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="kiss.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="KISSHF.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="L2Code.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="L3Code.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="L4Code.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="md5.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Moncode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MULTIPSK.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="PortMapper.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="RigControl.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SCSPactor.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SCSTrackeMulti.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SCSTracker.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SerialPort.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="TelnetV6.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="TNCCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="TNCEmulators.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="UIARQ.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="upnp.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="utf8Routines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="UZ7HODrv.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="V4.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="VARA.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WINMOR.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WinRPR.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<MASM Include="asmDOSAPI.asm">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</MASM>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="asmstrucs.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="CHeaders.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="compatbits.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\CKernel\kernelresource.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Versions.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="bpq32.def">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\CInclude\Strucs.inc">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="KernelScript1.rc">
|
||||||
|
<Filter>Resource Files</Filter>
|
||||||
|
</ResourceCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
26
CHeaders.h
26
CHeaders.h
|
@ -93,7 +93,7 @@ VOID DoTheCommand(TRANSPORTENTRY * Session);
|
||||||
char * MOVEANDCHECK(TRANSPORTENTRY * Session, char * Bufferptr, char * Source, int Len);
|
char * MOVEANDCHECK(TRANSPORTENTRY * Session, char * Bufferptr, char * Source, int Len);
|
||||||
VOID DISPLAYCIRCUIT(TRANSPORTENTRY * L4, char * Buffer);
|
VOID DISPLAYCIRCUIT(TRANSPORTENTRY * L4, char * Buffer);
|
||||||
char * FormatUptime(int Uptime);
|
char * FormatUptime(int Uptime);
|
||||||
char * strlop(const char * buf, char delim);
|
char * strlop(char * buf, char delim);
|
||||||
BOOL CompareCalls(UCHAR * c1, UCHAR * c2);
|
BOOL CompareCalls(UCHAR * c1, UCHAR * c2);
|
||||||
|
|
||||||
VOID PostDataAvailable(TRANSPORTENTRY * Session);
|
VOID PostDataAvailable(TRANSPORTENTRY * Session);
|
||||||
|
@ -109,7 +109,7 @@ int cCOUNT_AT_L2(struct _LINKTABLE * LINK);
|
||||||
VOID SENDL4CONNECT(TRANSPORTENTRY * Session);
|
VOID SENDL4CONNECT(TRANSPORTENTRY * Session);
|
||||||
|
|
||||||
VOID CloseSessionPartner(TRANSPORTENTRY * Session);
|
VOID CloseSessionPartner(TRANSPORTENTRY * Session);
|
||||||
int COUNTNODES(struct ROUTE * ROUTE);
|
int COUNTNODES();
|
||||||
int DecodeNodeName(char * NodeName, char * ptr);;
|
int DecodeNodeName(char * NodeName, char * ptr);;
|
||||||
VOID DISPLAYCIRCUIT(TRANSPORTENTRY * L4, char * Buffer);
|
VOID DISPLAYCIRCUIT(TRANSPORTENTRY * L4, char * Buffer);
|
||||||
int cCOUNT_AT_L2(struct _LINKTABLE * LINK);
|
int cCOUNT_AT_L2(struct _LINKTABLE * LINK);
|
||||||
|
@ -153,7 +153,6 @@ int APIENTRY Reboot();
|
||||||
int APIENTRY Reconfig();
|
int APIENTRY Reconfig();
|
||||||
Dll int APIENTRY SaveNodes ();
|
Dll int APIENTRY SaveNodes ();
|
||||||
|
|
||||||
|
|
||||||
struct SEM;
|
struct SEM;
|
||||||
|
|
||||||
void GetSemaphore(struct SEM * Semaphore, int ID);
|
void GetSemaphore(struct SEM * Semaphore, int ID);
|
||||||
|
@ -252,7 +251,6 @@ extern UCHAR MYCALLWITHALIAS[13];
|
||||||
extern APPLCALLS APPLCALLTABLE[NumberofAppls];
|
extern APPLCALLS APPLCALLTABLE[NumberofAppls];
|
||||||
|
|
||||||
extern UCHAR MYNODECALL[]; // NODE CALLSIGN (ASCII)
|
extern UCHAR MYNODECALL[]; // NODE CALLSIGN (ASCII)
|
||||||
extern char NODECALLLOPPED[]; // NODE CALLSIGN (ASCII). Null terminated
|
|
||||||
extern UCHAR MYNETROMCALL[]; // NETROM CALLSIGN (ASCII)
|
extern UCHAR MYNETROMCALL[]; // NETROM CALLSIGN (ASCII)
|
||||||
|
|
||||||
extern UCHAR NETROMCALL[]; // NETORM CALL (AX25)
|
extern UCHAR NETROMCALL[]; // NETORM CALL (AX25)
|
||||||
|
@ -359,7 +357,7 @@ extern char * ConfigBuffer;
|
||||||
|
|
||||||
extern char * WL2KReportLine[];
|
extern char * WL2KReportLine[];
|
||||||
|
|
||||||
extern struct CMDX COMMANDS[];
|
extern CMDX COMMANDS[];
|
||||||
|
|
||||||
extern int QCOUNT, MAXBUFFS, MAXCIRCUITS, L4DEFAULTWINDOW, L4T1, CMDXLEN;
|
extern int QCOUNT, MAXBUFFS, MAXCIRCUITS, L4DEFAULTWINDOW, L4T1, CMDXLEN;
|
||||||
extern char CMDALIAS[ALIASLEN][NumberofAppls];
|
extern char CMDALIAS[ALIASLEN][NumberofAppls];
|
||||||
|
@ -398,7 +396,6 @@ extern int REALTIMETICKS;
|
||||||
|
|
||||||
extern time_t CurrentSecs;
|
extern time_t CurrentSecs;
|
||||||
extern time_t lastSlowSecs;
|
extern time_t lastSlowSecs;
|
||||||
extern time_t lastSaveSecs;
|
|
||||||
|
|
||||||
// SNMP Variables
|
// SNMP Variables
|
||||||
|
|
||||||
|
@ -430,19 +427,4 @@ extern char Message[MaxBPQPortNo + 1][1000]; // Beacon Text
|
||||||
extern int MinCounter[MaxBPQPortNo + 1]; // Interval Countdown
|
extern int MinCounter[MaxBPQPortNo + 1]; // Interval Countdown
|
||||||
extern BOOL SendFromFile[MaxBPQPortNo + 1];
|
extern BOOL SendFromFile[MaxBPQPortNo + 1];
|
||||||
|
|
||||||
extern BOOL MQTT;
|
DllExport uint64_t APIENTRY GetPortFrequency(int PortNo, char * FreqStringMhz);
|
||||||
extern char MQTT_HOST[80];
|
|
||||||
extern int MQTT_PORT;
|
|
||||||
extern char MQTT_USER[80];
|
|
||||||
extern char MQTT_PASS[80];
|
|
||||||
|
|
||||||
DllExport uint64_t APIENTRY GetPortFrequency(int PortNo, char * FreqStringMhz);
|
|
||||||
|
|
||||||
|
|
||||||
void hookL2SessionAccepted(int Port, char * remotecall, char * ourcall, struct _LINKTABLE * LINK);
|
|
||||||
void hookL2SessionDeleted(struct _LINKTABLE * LINK);
|
|
||||||
void hookL2SessionAttempt(int Port, char * ourcall, char * remotecall, struct _LINKTABLE * LINK);
|
|
||||||
|
|
||||||
void hookL4SessionAttempt(void * STREAM, char * remotecall, char * ourcall);
|
|
||||||
void hookL4SessionAccepted(void * STREAM, char * remotecall, char * ourcall);
|
|
||||||
void hookL4SessionDeleted(struct TNCINFO * TNC, void * STREAM);
|
|
|
@ -23,7 +23,6 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
#ifdef LINBPQ
|
#ifdef LINBPQ
|
||||||
|
|
||||||
#include "compatbits.h"
|
#include "compatbits.h"
|
||||||
char * strlop(const char * buf, char delim);
|
|
||||||
|
|
||||||
#define APIENTRY
|
#define APIENTRY
|
||||||
#define VOID void
|
#define VOID void
|
||||||
|
@ -32,6 +31,7 @@ char * strlop(const char * buf, char delim);
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
|
|
||||||
VOID APIENTRY md5 (char *arg, unsigned char * checksum);
|
VOID APIENTRY md5 (char *arg, unsigned char * checksum);
|
||||||
|
|
||||||
|
|
319
Cmd.c
319
Cmd.c
|
@ -10,7 +10,7 @@ the Free Software Foundation, either version 3 of the License, or
|
||||||
|
|
||||||
LinBPQ/BPQ32 is distributed in the hope that it will be useful,
|
LinBPQ/BPQ32 is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. S"paclenee the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
|
@ -44,8 +44,6 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
#include "tncinfo.h"
|
#include "tncinfo.h"
|
||||||
#include "telnetserver.h"
|
#include "telnetserver.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//#include "GetVersion.h"
|
//#include "GetVersion.h"
|
||||||
|
|
||||||
//#define DllImport __declspec( dllimport )
|
//#define DllImport __declspec( dllimport )
|
||||||
|
@ -66,12 +64,8 @@ VOID L2SENDXID(struct _LINKTABLE * LINK);
|
||||||
int CountBits(unsigned long in);
|
int CountBits(unsigned long in);
|
||||||
VOID SaveMH();
|
VOID SaveMH();
|
||||||
BOOL RestartTNC(struct TNCINFO * TNC);
|
BOOL RestartTNC(struct TNCINFO * TNC);
|
||||||
void GetPortCTEXT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
void GetPortCTEXT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID WriteMiniDump();
|
VOID WriteMiniDump();
|
||||||
int CheckKissInterlock(struct PORTCONTROL * PORT, int Exclusive);
|
|
||||||
int seeifInterlockneeded(struct PORTCONTROL * PORT);
|
|
||||||
|
|
||||||
extern VOID KISSTX(struct KISSINFO * KISS, PMESSAGE Buffer);
|
|
||||||
|
|
||||||
char COMMANDBUFFER[81] = ""; // Command Hander input buffer
|
char COMMANDBUFFER[81] = ""; // Command Hander input buffer
|
||||||
char OrigCmdBuffer[81] = ""; // Command Hander input buffer before toupper
|
char OrigCmdBuffer[81] = ""; // Command Hander input buffer before toupper
|
||||||
|
@ -136,8 +130,8 @@ int L4FRAMESRETRIED = 0;
|
||||||
int OLDFRAMES = 0;
|
int OLDFRAMES = 0;
|
||||||
int L3FRAMES = 0;
|
int L3FRAMES = 0;
|
||||||
|
|
||||||
VOID SENDSABM(struct _LINKTABLE * LINK);
|
VOID SENDSABM();
|
||||||
VOID RESET2(struct _LINKTABLE * LINK);
|
VOID RESET2();
|
||||||
|
|
||||||
int APPL1 = 0;
|
int APPL1 = 0;
|
||||||
int PASSCMD = 0;
|
int PASSCMD = 0;
|
||||||
|
@ -151,36 +145,33 @@ char * ALIASPTR = &CMDALIAS[0][0];
|
||||||
|
|
||||||
extern int RigReconfigFlag;
|
extern int RigReconfigFlag;
|
||||||
|
|
||||||
|
CMDX COMMANDS[];
|
||||||
|
|
||||||
|
int CMDXLEN = sizeof (CMDX);
|
||||||
struct CMDX COMMANDS[];
|
|
||||||
|
|
||||||
int CMDXLEN = sizeof (struct CMDX);
|
|
||||||
|
|
||||||
VOID SENDNODESMSG();
|
VOID SENDNODESMSG();
|
||||||
VOID KISSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID KISSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID STOPCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID STOPCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID STARTCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID STARTCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID STOPPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID STOPPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID STARTPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID STARTPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID FINDBUFFS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID FINDBUFFS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID WL2KSYSOP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID WL2KSYSOP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID AXRESOLVER(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID AXRESOLVER(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID AXMHEARD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID AXMHEARD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID SHOWTELNET(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID SHOWTELNET(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID SHOWAGW(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID SHOWAGW(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID SHOWARP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID SHOWARP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID SHOWNAT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID SHOWNAT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID PING(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID PING(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID SHOWIPROUTE(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID SHOWIPROUTE(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID FLMSG(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD);
|
VOID FLMSG(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD);
|
||||||
void ListExcludedCalls(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
void ListExcludedCalls(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID APRSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID APRSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID RECONFIGTELNET (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID RECONFIGTELNET (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID HELPCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID HELPCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
VOID UZ7HOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD);
|
VOID UZ7HOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD);
|
||||||
VOID QTSMCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD);
|
|
||||||
void hookL2SessionAttempt(int Port, char * fromCall, char * toCall, struct _LINKTABLE * LINK);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -246,7 +237,7 @@ char * __cdecl Cmdprintf(TRANSPORTENTRY * Session, char * Bufferptr, const char
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID SENDNODES(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SENDNODES(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
SENDNODESMSG();
|
SENDNODESMSG();
|
||||||
|
|
||||||
|
@ -256,7 +247,7 @@ VOID SENDNODES(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struc
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SAVEMHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SAVEMHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
SaveMH();
|
SaveMH();
|
||||||
|
|
||||||
|
@ -266,7 +257,7 @@ VOID SAVEMHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struc
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SAVENODES(struct _TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SAVENODES(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
SaveNodes();
|
SaveNodes();
|
||||||
|
|
||||||
|
@ -276,7 +267,7 @@ VOID SAVENODES(struct _TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTai
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID DUMPCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID DUMPCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
WriteMiniDump();
|
WriteMiniDump();
|
||||||
|
|
||||||
|
@ -286,7 +277,7 @@ VOID DUMPCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID RIGRECONFIG(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID RIGRECONFIG(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
if (!ProcessConfig())
|
if (!ProcessConfig())
|
||||||
{
|
{
|
||||||
|
@ -301,7 +292,7 @@ VOID RIGRECONFIG(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, str
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID REBOOT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID REBOOT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
if (Reboot())
|
if (Reboot())
|
||||||
{
|
{
|
||||||
|
@ -317,7 +308,7 @@ VOID REBOOT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID RESTART(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID RESTART(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
if (Restart())
|
if (Restart())
|
||||||
{
|
{
|
||||||
|
@ -333,7 +324,7 @@ VOID RESTART(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID RESTARTTNC(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID RESTARTTNC(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char * ptr, *Context;
|
char * ptr, *Context;
|
||||||
int portno;
|
int portno;
|
||||||
|
@ -377,20 +368,20 @@ VOID RESTARTTNC(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, stru
|
||||||
|
|
||||||
UCHAR VALNODESFLAG = 0, EXTONLY = 0;
|
UCHAR VALNODESFLAG = 0, EXTONLY = 0;
|
||||||
|
|
||||||
VOID PORTVAL (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD);
|
VOID PORTVAL (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD);
|
||||||
|
|
||||||
VOID VALNODES(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID VALNODES(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
VALNODESFLAG = 1;
|
VALNODESFLAG = 1;
|
||||||
PORTVAL(Session, Bufferptr, CmdTail, CMD);
|
PORTVAL(Session, Bufferptr, CmdTail, CMD);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID EXTPORTVAL(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID EXTPORTVAL(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
EXTONLY = 1;
|
EXTONLY = 1;
|
||||||
PORTVAL(Session, Bufferptr, CmdTail, CMD);
|
PORTVAL(Session, Bufferptr, CmdTail, CMD);
|
||||||
}
|
}
|
||||||
VOID PORTVAL(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID PORTVAL(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS PORT VALUE COMMANDS
|
// PROCESS PORT VALUE COMMANDS
|
||||||
|
|
||||||
|
@ -505,7 +496,7 @@ VOID PORTVAL(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SWITCHVAL (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SWITCHVAL (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// Update switch 8 bit value
|
// Update switch 8 bit value
|
||||||
|
|
||||||
|
@ -550,7 +541,7 @@ VOID SWITCHVAL (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, stru
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SWITCHVALW (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SWITCHVALW (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// Update switch 16 bit value
|
// Update switch 16 bit value
|
||||||
|
|
||||||
|
@ -713,7 +704,7 @@ BOOL cATTACHTOBBS(TRANSPORTENTRY * Session, UINT Mask, int Paclen, int * AnySess
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID APPLCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID APPLCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
BOOL CONFAILED = 0;
|
BOOL CONFAILED = 0;
|
||||||
UINT CONERROR ;
|
UINT CONERROR ;
|
||||||
|
@ -824,13 +815,13 @@ VOID APPLCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID CMDI00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDI00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "%s", INFOMSG);
|
Bufferptr = Cmdprintf(Session, Bufferptr, "%s", INFOMSG);
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CMDV00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDV00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
if (sizeof(void *) == 4)
|
if (sizeof(void *) == 4)
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "Version %s\r", VersionString);
|
Bufferptr = Cmdprintf(Session, Bufferptr, "Version %s\r", VersionString);
|
||||||
|
@ -840,14 +831,14 @@ VOID CMDV00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID BYECMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID BYECMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
CLOSECURRENTSESSION(Session); // Kills any crosslink, plus local link
|
CLOSECURRENTSESSION(Session); // Kills any crosslink, plus local link
|
||||||
ReleaseBuffer((UINT *)REPLYBUFFER);
|
ReleaseBuffer((UINT *)REPLYBUFFER);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CMDPAC(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDPAC(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// SET PACLEN FOR THIS SESSION
|
// SET PACLEN FOR THIS SESSION
|
||||||
|
|
||||||
|
@ -869,7 +860,7 @@ VOID CMDPAC(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CMDIDLE(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDIDLE(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// SET IDLETIME FOR THIS SESSION
|
// SET IDLETIME FOR THIS SESSION
|
||||||
|
|
||||||
|
@ -891,7 +882,7 @@ VOID CMDIDLE(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
|
|
||||||
}
|
}
|
||||||
VOID CMDT00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDT00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// SET L4 TIMEOUT FOR CONNECTS ON THIS SESSION
|
// SET L4 TIMEOUT FOR CONNECTS ON THIS SESSION
|
||||||
|
|
||||||
|
@ -916,7 +907,7 @@ VOID CMDT00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
UCHAR PWLen;
|
UCHAR PWLen;
|
||||||
char PWTEXT[80];
|
char PWTEXT[80];
|
||||||
|
|
||||||
VOID PWDCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID PWDCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char * ptr, *Context;
|
char * ptr, *Context;
|
||||||
USHORT pwsum = 0;
|
USHORT pwsum = 0;
|
||||||
|
@ -984,7 +975,7 @@ VOID PWDCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CMDSTATS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDSTATS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char * ptr, *Context;
|
char * ptr, *Context;
|
||||||
int Port = 0, cols = NUMBEROFPORTS, i;
|
int Port = 0, cols = NUMBEROFPORTS, i;
|
||||||
|
@ -1205,12 +1196,11 @@ VOID CMDSTATS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "\r");
|
Bufferptr = Cmdprintf(Session, Bufferptr, "\r");
|
||||||
|
|
||||||
PORT = STARTPORT;
|
PORT = STARTPORT;
|
||||||
// Bufferptr = Cmdprintf(Session, Bufferptr, "Link Active %% ");
|
Bufferptr = Cmdprintf(Session, Bufferptr, "Link Active %% ");
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "Active(TX/Busy) %%");
|
|
||||||
|
|
||||||
for (i = 0; i < cols; i++)
|
for (i = 0; i < cols; i++)
|
||||||
{
|
{
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, " %2d %3d ", PORT->AVSENDING, PORT->AVACTIVE);
|
Bufferptr = Cmdprintf(Session, Bufferptr, " %2d %3d", PORT->AVSENDING, PORT->AVACTIVE);
|
||||||
PORT = PORT->PORTPOINTER;
|
PORT = PORT->PORTPOINTER;
|
||||||
}
|
}
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "\r");
|
Bufferptr = Cmdprintf(Session, Bufferptr, "\r");
|
||||||
|
@ -1218,7 +1208,7 @@ VOID CMDSTATS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CMDL00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDL00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS 'LINKS' MESSAGE
|
// PROCESS 'LINKS' MESSAGE
|
||||||
|
|
||||||
|
@ -1254,7 +1244,7 @@ VOID CMDL00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID CMDS00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDS00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS 'USERS'
|
// PROCESS 'USERS'
|
||||||
|
|
||||||
|
@ -1326,7 +1316,7 @@ CMDS60:
|
||||||
|
|
||||||
extern int MasterPort[MAXBPQPORTS+1]; // Pointer to first BPQ port for a specific MPSK or UZ7HO host
|
extern int MasterPort[MAXBPQPORTS+1]; // Pointer to first BPQ port for a specific MPSK or UZ7HO host
|
||||||
|
|
||||||
VOID CMDP00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDP00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// Process PORTS Message
|
// Process PORTS Message
|
||||||
|
|
||||||
|
@ -1581,7 +1571,7 @@ char * DisplayRoute(TRANSPORTENTRY * Session, char * Bufferptr, struct ROUTE *
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID CMDR00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDR00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct ROUTE * Routes = NEIGHBOURS;
|
struct ROUTE * Routes = NEIGHBOURS;
|
||||||
int MaxRoutes = MAXNEIGHBOURS;
|
int MaxRoutes = MAXNEIGHBOURS;
|
||||||
|
@ -1871,7 +1861,7 @@ SendReply:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID LISTENCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID LISTENCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS LISTEN COMMAND
|
// PROCESS LISTEN COMMAND
|
||||||
|
|
||||||
|
@ -1954,7 +1944,7 @@ VOID LISTENCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID UNPROTOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID UNPROTOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS UNPROTO COMMAND
|
// PROCESS UNPROTO COMMAND
|
||||||
|
|
||||||
|
@ -2023,7 +2013,7 @@ VOID UNPROTOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, stru
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CALCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CALCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS CAL COMMAND
|
// PROCESS CAL COMMAND
|
||||||
|
|
||||||
|
@ -2076,7 +2066,7 @@ VOID CALCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
VOID CQCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CQCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// Send a CQ Beacon on a radio port. Must be in LISTEN state
|
// Send a CQ Beacon on a radio port. Must be in LISTEN state
|
||||||
|
|
||||||
|
@ -2282,9 +2272,9 @@ BOOL FindLink(UCHAR * LinkCall, UCHAR * OurCall, int Port, struct _LINKTABLE **
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID ATTACHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD);
|
VOID ATTACHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD);
|
||||||
|
|
||||||
VOID CMDC00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDC00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS CONNECT COMMAND
|
// PROCESS CONNECT COMMAND
|
||||||
|
|
||||||
|
@ -2305,7 +2295,7 @@ VOID CMDC00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct C
|
||||||
int TextCallLen;
|
int TextCallLen;
|
||||||
char PortString[10];
|
char PortString[10];
|
||||||
char cmdCopy[256];
|
char cmdCopy[256];
|
||||||
struct _EXTPORTDATA * EXTPORT = (struct _EXTPORTDATA *)PORT;
|
struct _EXTPORTDATA * EXTPORT = (struct _EXTPORTDATA *)PORT;;
|
||||||
|
|
||||||
|
|
||||||
#ifdef EXCLUDEBITS
|
#ifdef EXCLUDEBITS
|
||||||
|
@ -2747,16 +2737,6 @@ noFlip:
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = CheckKissInterlock(PORT, TRUE);
|
|
||||||
|
|
||||||
if (ret)
|
|
||||||
{
|
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "Sorry, Interlocked port %d is in use\r", ret);
|
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (Session->L4USER[6] == 0x42 || Session->L4USER[6] == 0x44)
|
if (Session->L4USER[6] == 0x42 || Session->L4USER[6] == 0x44)
|
||||||
{
|
{
|
||||||
|
@ -2856,8 +2836,6 @@ noFlip3:
|
||||||
|
|
||||||
if (CQFLAG == 0) // if a CQ CALL DONT SEND SABM
|
if (CQFLAG == 0) // if a CQ CALL DONT SEND SABM
|
||||||
{
|
{
|
||||||
seeifInterlockneeded(PORT);
|
|
||||||
|
|
||||||
if (LINK->L2STATE == 1)
|
if (LINK->L2STATE == 1)
|
||||||
L2SENDXID(LINK);
|
L2SENDXID(LINK);
|
||||||
else
|
else
|
||||||
|
@ -2924,7 +2902,7 @@ BOOL DecodeCallString(char * Calls, BOOL * Stay, BOOL * Spy, UCHAR * AXCalls)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID LINKCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID LINKCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS *** LINKED to CALLSIGN
|
// PROCESS *** LINKED to CALLSIGN
|
||||||
|
|
||||||
|
@ -3116,7 +3094,7 @@ int WildCmp(char * pattern, char * string)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CMDN00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID CMDN00(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct DEST_LIST * Dest = DESTS;
|
struct DEST_LIST * Dest = DESTS;
|
||||||
int count = MAXDESTS, i;
|
int count = MAXDESTS, i;
|
||||||
|
@ -3637,7 +3615,7 @@ SendReply:
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CMDQUERY(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD)
|
VOID CMDQUERY(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD)
|
||||||
{
|
{
|
||||||
// DISPLAY AVAILABLE COMMANDS
|
// DISPLAY AVAILABLE COMMANDS
|
||||||
|
|
||||||
|
@ -3646,7 +3624,7 @@ VOID CMDQUERY(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
char ApplList[2048];
|
char ApplList[2048];
|
||||||
char * out = ApplList;
|
char * out = ApplList;
|
||||||
|
|
||||||
struct CMDX * CMD = &COMMANDS[APPL1];
|
CMDX * CMD = &COMMANDS[APPL1];
|
||||||
|
|
||||||
for (n = 0; n < NumberofAppls; n++)
|
for (n = 0; n < NumberofAppls; n++)
|
||||||
{
|
{
|
||||||
|
@ -3676,7 +3654,7 @@ VOID CMDQUERY(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
|
|
||||||
char * FormatMH(MHSTRUC * MH, char Format);
|
char * FormatMH(MHSTRUC * MH, char Format);
|
||||||
|
|
||||||
VOID MHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID MHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY HEARD LIST
|
// DISPLAY HEARD LIST
|
||||||
|
|
||||||
|
@ -3858,7 +3836,7 @@ VOID MHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CM
|
||||||
|
|
||||||
int Rig_Command(TRANSPORTENTRY * Session, char * Command);
|
int Rig_Command(TRANSPORTENTRY * Session, char * Command);
|
||||||
|
|
||||||
VOID RADIOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD)
|
VOID RADIOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD)
|
||||||
{
|
{
|
||||||
char * ptr;
|
char * ptr;
|
||||||
|
|
||||||
|
@ -3887,7 +3865,7 @@ VOID RADIOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
VOID SendNRRecordRoute(struct DEST_LIST * DEST, TRANSPORTENTRY * Session);
|
VOID SendNRRecordRoute(struct DEST_LIST * DEST, TRANSPORTENTRY * Session);
|
||||||
|
|
||||||
|
|
||||||
VOID NRRCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD)
|
VOID NRRCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD)
|
||||||
{
|
{
|
||||||
// PROCESS 'NRR - Netrom Record Route' COMMAND
|
// PROCESS 'NRR - Netrom Record Route' COMMAND
|
||||||
|
|
||||||
|
@ -3957,7 +3935,7 @@ int CHECKINTERLOCK(struct PORTCONTROL * OURPORT)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID ATTACHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD)
|
VOID ATTACHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD)
|
||||||
{
|
{
|
||||||
// ATTACH to a PACTOR or similar port
|
// ATTACH to a PACTOR or similar port
|
||||||
|
|
||||||
|
@ -4188,7 +4166,7 @@ VOID ATTACHCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (EXTPORT->ATTACHEDSESSIONS[sess] || PORT->PortSuspended)
|
if (EXTPORT->ATTACHEDSESSIONS[sess])
|
||||||
{
|
{
|
||||||
// In use
|
// In use
|
||||||
|
|
||||||
|
@ -4322,17 +4300,16 @@ checkattachandcall:
|
||||||
|
|
||||||
// SYSOP COMMANDS
|
// SYSOP COMMANDS
|
||||||
|
|
||||||
struct CMDX COMMANDS[] =
|
CMDX COMMANDS[] =
|
||||||
{
|
{
|
||||||
// "SAVENODES ",8, SAVENODES(struct _TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD), 0,
|
"SAVENODES ",8, SAVENODES, 0,
|
||||||
"SAVENODES ",8, &SAVENODES, 0,
|
"TELRECONFIG ",4, RECONFIGTELNET, 0,
|
||||||
"TELRECONFIG ",4, &RECONFIGTELNET, 0,
|
"SAVEMH ",6, SAVEMHCMD, 0,
|
||||||
"SAVEMH ",6, &SAVEMHCMD, 0,
|
"REBOOT ",6, REBOOT, 0,
|
||||||
"REBOOT ",6, &REBOOT, 0,
|
"RIGRECONFIG ",8 , RIGRECONFIG, 0,
|
||||||
"RIGRECONFIG ",8, &RIGRECONFIG, 0,
|
"RESTART ",7,RESTART,0,
|
||||||
"RESTART ",7, &RESTART,0,
|
"RESTARTTNC ",10,RESTARTTNC,0,
|
||||||
"RESTARTTNC ",10,&RESTARTTNC,0,
|
"SENDNODES ",8,SENDNODES,0,
|
||||||
"SENDNODES ",8, &SENDNODES,0,
|
|
||||||
"EXTRESTART ",10, EXTPORTVAL, offsetof(EXTPORTDATA, EXTRESTART),
|
"EXTRESTART ",10, EXTPORTVAL, offsetof(EXTPORTDATA, EXTRESTART),
|
||||||
"TXDELAY ",3, PORTVAL, offsetof(PORTCONTROLX, PORTTXDELAY),
|
"TXDELAY ",3, PORTVAL, offsetof(PORTCONTROLX, PORTTXDELAY),
|
||||||
"MAXFRAME ",3, PORTVAL, offsetof(PORTCONTROLX, PORTWINDOW),
|
"MAXFRAME ",3, PORTVAL, offsetof(PORTCONTROLX, PORTWINDOW),
|
||||||
|
@ -4457,14 +4434,13 @@ struct CMDX COMMANDS[] =
|
||||||
"NAT ",3,SHOWNAT,0,
|
"NAT ",3,SHOWNAT,0,
|
||||||
"IPROUTE ",3,SHOWIPROUTE,0,
|
"IPROUTE ",3,SHOWIPROUTE,0,
|
||||||
"UZ7HO ",5,UZ7HOCMD,0,
|
"UZ7HO ",5,UZ7HOCMD,0,
|
||||||
"QTSM ",4,QTSMCMD,0,
|
|
||||||
|
|
||||||
"..FLMSG ",7,FLMSG,0
|
"..FLMSG ",7,FLMSG,0
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CMDX * CMD = NULL;
|
CMDX * CMD = NULL;
|
||||||
|
|
||||||
int NUMBEROFCOMMANDS = sizeof(COMMANDS)/sizeof(struct CMDX);
|
int NUMBEROFCOMMANDS = sizeof(COMMANDS)/sizeof(CMDX);
|
||||||
|
|
||||||
char * ReplyPointer; // Pointer into reply buffer
|
char * ReplyPointer; // Pointer into reply buffer
|
||||||
|
|
||||||
|
@ -4921,69 +4897,19 @@ VOID DoTheCommand(TRANSPORTENTRY * Session)
|
||||||
VOID StatsTimer()
|
VOID StatsTimer()
|
||||||
{
|
{
|
||||||
struct PORTCONTROL * PORT = PORTTABLE;
|
struct PORTCONTROL * PORT = PORTTABLE;
|
||||||
uint64_t sum, sum2;
|
int sum;
|
||||||
|
|
||||||
// Interval is 60 secs
|
|
||||||
|
|
||||||
while(PORT)
|
while(PORT)
|
||||||
{
|
{
|
||||||
int index = PORT->StatsPointer++;
|
sum = PORT->SENDING / 11;
|
||||||
|
PORT->AVSENDING = sum;
|
||||||
|
|
||||||
if (index == 1439)
|
sum = (PORT->SENDING + PORT->ACTIVE) /11;
|
||||||
PORT->StatsPointer = 0; // Cyclic through 24 hours (1440 Mins)
|
PORT->AVACTIVE = sum;
|
||||||
|
|
||||||
if (PORT->TNC)
|
|
||||||
{
|
|
||||||
struct TNCINFO * TNC = PORT->TNC;
|
|
||||||
if (TNC->Hardware == H_ARDOP || TNC->Hardware == H_VARA)
|
|
||||||
{
|
|
||||||
sum = TNC->PTTActivemS / 600; // ms but want %
|
|
||||||
PORT->AVSENDING = (UCHAR)sum;
|
|
||||||
TNC->PTTActivemS = 0;
|
|
||||||
|
|
||||||
sum2 = TNC->BusyActivemS / 600; // ms but want %
|
|
||||||
PORT->AVACTIVE = (UCHAR)(sum + sum2);
|
|
||||||
TNC->BusyActivemS = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// if KISS port using QtSM Average is already updated
|
|
||||||
|
|
||||||
struct KISSINFO * KISS = (struct KISSINFO *)PORT;
|
|
||||||
|
|
||||||
if (PORT->PORTNUMBER == 17)
|
|
||||||
{
|
|
||||||
int x = 17;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((void *)PORT->PORTTXROUTINE == (void *)KISSTX && (KISS->QtSMStats || KISS->FIRSTPORT->PORT.QtSMPort)) // KISS Port QtSM Stats
|
|
||||||
{
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
sum = PORT->SENDING / 11;
|
|
||||||
PORT->AVSENDING = (UCHAR)sum;
|
|
||||||
|
|
||||||
sum = (PORT->SENDING + PORT->ACTIVE) /11;
|
|
||||||
PORT->AVACTIVE = (UCHAR)sum;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PORT->TX == NULL && PORT->AVACTIVE)
|
|
||||||
{
|
|
||||||
PORT->TX = zalloc(1440); // Keep 1 day history
|
|
||||||
PORT->BUSY = zalloc(1440);
|
|
||||||
}
|
|
||||||
if (PORT->TX)
|
|
||||||
{
|
|
||||||
PORT->TX[index] = PORT->AVSENDING;
|
|
||||||
PORT->BUSY[index] = PORT->AVACTIVE;
|
|
||||||
}
|
|
||||||
|
|
||||||
PORT->SENDING = 0;
|
PORT->SENDING = 0;
|
||||||
PORT->ACTIVE = 0;
|
PORT->ACTIVE = 0;
|
||||||
|
|
||||||
PORT = PORT->PORTPOINTER;
|
PORT = PORT->PORTPOINTER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4995,7 +4921,7 @@ extern struct AXIPPORTINFO * Portlist[];
|
||||||
#define TCPConnected 4
|
#define TCPConnected 4
|
||||||
|
|
||||||
|
|
||||||
VOID AXRESOLVER(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID AXRESOLVER(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY AXIP Resolver info
|
// DISPLAY AXIP Resolver info
|
||||||
|
|
||||||
|
@ -5085,7 +5011,7 @@ VOID AXRESOLVER(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, stru
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID AXMHEARD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID AXMHEARD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY AXIP Mheard info
|
// DISPLAY AXIP Mheard info
|
||||||
|
|
||||||
|
@ -5155,7 +5081,7 @@ extern char WL2KLoc[7];
|
||||||
BOOL GetWL2KSYSOPInfo(char * Call, char * _REPLYBUFFER);
|
BOOL GetWL2KSYSOPInfo(char * Call, char * _REPLYBUFFER);
|
||||||
BOOL UpdateWL2KSYSOPInfo(char * Call, char * SQL);
|
BOOL UpdateWL2KSYSOPInfo(char * Call, char * SQL);
|
||||||
|
|
||||||
VOID WL2KSYSOP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID WL2KSYSOP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char _REPLYBUFFER[1000] = "";
|
char _REPLYBUFFER[1000] = "";
|
||||||
|
|
||||||
|
@ -5307,7 +5233,7 @@ VOID WL2KSYSOP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struc
|
||||||
|
|
||||||
VOID CloseKISSPort(struct PORTCONTROL * PortVector);
|
VOID CloseKISSPort(struct PORTCONTROL * PortVector);
|
||||||
|
|
||||||
VOID STOPCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID STOPCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char _REPLYBUFFER[1000] = "";
|
char _REPLYBUFFER[1000] = "";
|
||||||
char * ptr, * Context;
|
char * ptr, * Context;
|
||||||
|
@ -5368,7 +5294,7 @@ VOID STOPCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID STARTCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID STARTCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char _REPLYBUFFER[1000] = "";
|
char _REPLYBUFFER[1000] = "";
|
||||||
char * ptr, * Context;
|
char * ptr, * Context;
|
||||||
|
@ -5428,7 +5354,7 @@ VOID STARTCMS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID STOPPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID STOPPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char _REPLYBUFFER[1000] = "";
|
char _REPLYBUFFER[1000] = "";
|
||||||
char * ptr, * Context;
|
char * ptr, * Context;
|
||||||
|
@ -5512,7 +5438,7 @@ VOID STOPPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID STARTPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID STARTPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char _REPLYBUFFER[1000] = "";
|
char _REPLYBUFFER[1000] = "";
|
||||||
char * ptr, * Context;
|
char * ptr, * Context;
|
||||||
|
@ -5604,7 +5530,7 @@ VOID STARTPORT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struc
|
||||||
int ASYSEND(struct PORTCONTROL * PortVector, char * buffer, int count);
|
int ASYSEND(struct PORTCONTROL * PortVector, char * buffer, int count);
|
||||||
int KissEncode(UCHAR * inbuff, UCHAR * outbuff, int len);
|
int KissEncode(UCHAR * inbuff, UCHAR * outbuff, int len);
|
||||||
|
|
||||||
VOID KISSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID KISSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char _REPLYBUFFER[1000] = "";
|
char _REPLYBUFFER[1000] = "";
|
||||||
char * ptr, * Context;
|
char * ptr, * Context;
|
||||||
|
@ -5695,7 +5621,7 @@ VOID KISSCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID FINDBUFFS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID FINDBUFFS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
FindLostBuffers();
|
FindLostBuffers();
|
||||||
|
|
||||||
|
@ -5707,7 +5633,7 @@ VOID FINDBUFFS(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struc
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID FLMSG(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * UserCMD)
|
VOID FLMSG(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * UserCMD)
|
||||||
{
|
{
|
||||||
// Telnet Connection from FLMSG
|
// Telnet Connection from FLMSG
|
||||||
CLOSECURRENTSESSION(Session); // Kills any crosslink, plus local link
|
CLOSECURRENTSESSION(Session); // Kills any crosslink, plus local link
|
||||||
|
@ -5730,7 +5656,7 @@ BOOL CheckExcludeList(UCHAR * Call)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ListExcludedCalls(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
void ListExcludedCalls(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
|
|
||||||
UCHAR * ptr = ExcludeList;
|
UCHAR * ptr = ExcludeList;
|
||||||
|
@ -5779,7 +5705,7 @@ BOOL isSYSOP(TRANSPORTENTRY * Session, char * Bufferptr)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID HELPCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID HELPCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
int FileSize;
|
int FileSize;
|
||||||
char MsgFile[MAX_PATH];
|
char MsgFile[MAX_PATH];
|
||||||
|
@ -5868,7 +5794,7 @@ int UZ7HOSetModem(int port, struct TNCINFO * TNC, struct AGWINFO * AGW, PDATAMES
|
||||||
int UZ7HOSetFlags(int port, struct TNCINFO * TNC, struct AGWINFO * AGW, PDATAMESSAGE buff, PMSGWITHLEN buffptr);
|
int UZ7HOSetFlags(int port, struct TNCINFO * TNC, struct AGWINFO * AGW, PDATAMESSAGE buff, PMSGWITHLEN buffptr);
|
||||||
|
|
||||||
|
|
||||||
VOID UZ7HOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID UZ7HOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char * Cmd;
|
char * Cmd;
|
||||||
int port;
|
int port;
|
||||||
|
@ -5893,7 +5819,7 @@ VOID UZ7HOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
AGW = TNC->AGWInfo;
|
AGW = TNC->AGWInfo;
|
||||||
|
|
||||||
if (TNC == 0 || AGW == 0)
|
if (TNC == 0 || AGW == 0)
|
||||||
{
|
{
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "Error - %d is not UZ7HO port\r", port);
|
Bufferptr = Cmdprintf(Session, Bufferptr, "Error - %d is not UZ7HO port\r", port);
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
return;
|
return;
|
||||||
|
@ -5939,43 +5865,6 @@ VOID UZ7HOCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID QTSMCMD(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
|
||||||
{
|
|
||||||
int port;
|
|
||||||
struct PORTCONTROL * PORT;
|
|
||||||
struct KISSINFO * KISS;
|
|
||||||
|
|
||||||
CmdTail = CmdTail + (OrigCmdBuffer - COMMANDBUFFER); // Replace with original case version
|
|
||||||
|
|
||||||
port = atoi(CmdTail);
|
|
||||||
|
|
||||||
PORT = GetPortTableEntryFromPortNum(port);
|
|
||||||
|
|
||||||
if (PORT == NULL || (void *)PORT->PORTTXROUTINE != (void *)KISSTX) // Must be a kiss like port
|
|
||||||
{
|
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "Error - Port %d is not a KISS port\r", port);
|
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
KISS = (struct KISSINFO *)PORT;
|
|
||||||
|
|
||||||
if (KISS->QtSMModem == 0)
|
|
||||||
{
|
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "Error - Port %d has no QtSM information\r", port);
|
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Bufferptr = Cmdprintf(Session, Bufferptr, "Modem %s Centre frequency %d\r",
|
|
||||||
(KISS->QtSMModem) ? KISS->QtSMModem : "Not Available", KISS->QtSMFreq);
|
|
||||||
|
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
155
CommonCode.c
155
CommonCode.c
|
@ -28,7 +28,6 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "mqtt.h"
|
|
||||||
|
|
||||||
#pragma data_seg("_BPQDATA")
|
#pragma data_seg("_BPQDATA")
|
||||||
|
|
||||||
|
@ -74,7 +73,6 @@ void SendDataToPktMap(char *Msg);
|
||||||
extern BOOL LogAllConnects;
|
extern BOOL LogAllConnects;
|
||||||
extern BOOL M0LTEMap;
|
extern BOOL M0LTEMap;
|
||||||
|
|
||||||
char * stristr (char *ch1, char *ch2);
|
|
||||||
|
|
||||||
extern VOID * ENDBUFFERPOOL;
|
extern VOID * ENDBUFFERPOOL;
|
||||||
|
|
||||||
|
@ -549,7 +547,6 @@ VOID * _GetBuff(char * File, int Line)
|
||||||
|
|
||||||
Msg->Process = (short)GetCurrentProcessId();
|
Msg->Process = (short)GetCurrentProcessId();
|
||||||
Msg->Linkptr = NULL;
|
Msg->Linkptr = NULL;
|
||||||
Msg->Padding[0] = 0; // Used for modem status info
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
Debugprintf("Warning - Getbuff returned NULL");
|
Debugprintf("Warning - Getbuff returned NULL");
|
||||||
|
@ -571,7 +568,7 @@ void * zalloc(int len)
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
char * strlop(const char * buf, char delim)
|
char * strlop(char * buf, char delim)
|
||||||
{
|
{
|
||||||
// Terminate buf at delim, and return rest of string
|
// Terminate buf at delim, and return rest of string
|
||||||
|
|
||||||
|
@ -692,7 +689,7 @@ VOID DISPLAYCIRCUIT(TRANSPORTENTRY * L4, char * Buffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CheckForDetach(struct TNCINFO * TNC, int Stream, struct STREAMINFO * STREAM,
|
VOID CheckForDetach(struct TNCINFO * TNC, int Stream, struct STREAMINFO * STREAM,
|
||||||
VOID TidyCloseProc(struct TNCINFO * TNC, int Stream), VOID ForcedCloseProc(struct TNCINFO * TNC, int Stream), VOID CloseComplete(struct TNCINFO * TNC, int Stream))
|
VOID TidyCloseProc(), VOID ForcedCloseProc(), VOID CloseComplete())
|
||||||
{
|
{
|
||||||
void ** buffptr;
|
void ** buffptr;
|
||||||
|
|
||||||
|
@ -736,7 +733,22 @@ VOID CheckForDetach(struct TNCINFO * TNC, int Stream, struct STREAMINFO * STREAM
|
||||||
|
|
||||||
// Create a traffic record
|
// Create a traffic record
|
||||||
|
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
if (STREAM->Connected && STREAM->ConnectTime)
|
||||||
|
{
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1; // Or will get divide by zero error
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
|
|
||||||
|
STREAM->ConnectTime = 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (STREAM->BPQtoPACTOR_Q) // Still data to send?
|
if (STREAM->BPQtoPACTOR_Q) // Still data to send?
|
||||||
return; // Will close when all acked
|
return; // Will close when all acked
|
||||||
|
@ -906,7 +918,6 @@ BOOL ProcessIncommingConnectEx(struct TNCINFO * TNC, char * Call, int Stream, BO
|
||||||
int Totallen = 0;
|
int Totallen = 0;
|
||||||
UCHAR * ptr;
|
UCHAR * ptr;
|
||||||
struct PORTCONTROL * PORT = (struct PORTCONTROL *)TNC->PortRecord;
|
struct PORTCONTROL * PORT = (struct PORTCONTROL *)TNC->PortRecord;
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[Stream];
|
|
||||||
|
|
||||||
// Stop Scanner
|
// Stop Scanner
|
||||||
|
|
||||||
|
@ -939,11 +950,7 @@ BOOL ProcessIncommingConnectEx(struct TNCINFO * TNC, char * Call, int Stream, BO
|
||||||
|
|
||||||
memset(Session, 0, sizeof(TRANSPORTENTRY));
|
memset(Session, 0, sizeof(TRANSPORTENTRY));
|
||||||
|
|
||||||
memcpy(STREAM->RemoteCall, Call, 9); // Save Text Callsign
|
memcpy(TNC->Streams[Stream].RemoteCall, Call, 9); // Save Text Callsign
|
||||||
|
|
||||||
// May be subsequently rejected but a good place to capture calls
|
|
||||||
|
|
||||||
hookL4SessionAccepted(STREAM, Call, TNC->TargetCall);
|
|
||||||
|
|
||||||
if (AllowTR)
|
if (AllowTR)
|
||||||
ConvToAX25Ex(Call, Session->L4USER); // Allow -T and -R SSID's for MPS
|
ConvToAX25Ex(Call, Session->L4USER); // Allow -T and -R SSID's for MPS
|
||||||
|
@ -956,7 +963,7 @@ BOOL ProcessIncommingConnectEx(struct TNCINFO * TNC, char * Call, int Stream, BO
|
||||||
if (NEXTID == 0) NEXTID++; // Keep non-zero
|
if (NEXTID == 0) NEXTID++; // Keep non-zero
|
||||||
|
|
||||||
TNC->PortRecord->ATTACHEDSESSIONS[Stream] = Session;
|
TNC->PortRecord->ATTACHEDSESSIONS[Stream] = Session;
|
||||||
STREAM->Attached = TRUE;
|
TNC->Streams[Stream].Attached = TRUE;
|
||||||
|
|
||||||
Session->L4TARGET.EXTPORT = TNC->PortRecord;
|
Session->L4TARGET.EXTPORT = TNC->PortRecord;
|
||||||
|
|
||||||
|
@ -967,7 +974,7 @@ BOOL ProcessIncommingConnectEx(struct TNCINFO * TNC, char * Call, int Stream, BO
|
||||||
Session->SESSPACLEN = TNC->PortRecord->PORTCONTROL.PORTPACLEN;
|
Session->SESSPACLEN = TNC->PortRecord->PORTCONTROL.PORTPACLEN;
|
||||||
Session->KAMSESSION = Stream;
|
Session->KAMSESSION = Stream;
|
||||||
|
|
||||||
STREAM->Connected = TRUE; // Subsequent data to data channel
|
TNC->Streams[Stream].Connected = TRUE; // Subsequent data to data channel
|
||||||
|
|
||||||
if (LogAllConnects)
|
if (LogAllConnects)
|
||||||
{
|
{
|
||||||
|
@ -1020,7 +1027,7 @@ BOOL ProcessIncommingConnectEx(struct TNCINFO * TNC, char * Call, int Stream, BO
|
||||||
char * Config;
|
char * Config;
|
||||||
static char * ptr1, * ptr2;
|
static char * ptr1, * ptr2;
|
||||||
|
|
||||||
BOOL ReadConfigFile(int Port, int ProcLine(char * buf, int Port))
|
BOOL ReadConfigFile(int Port, int ProcLine())
|
||||||
{
|
{
|
||||||
char buf[256],errbuf[256];
|
char buf[256],errbuf[256];
|
||||||
|
|
||||||
|
@ -1662,7 +1669,7 @@ DllExport time_t APIENTRY GetRaw(int stream, char * msg, int * len, int * count)
|
||||||
|
|
||||||
Stamp = MSG->Timestamp;
|
Stamp = MSG->Timestamp;
|
||||||
|
|
||||||
memcpy(msg, MSG, BUFFLEN - sizeof(void *)); // To c
|
memcpy(msg, MSG, Msglen);
|
||||||
|
|
||||||
*len = Msglen;
|
*len = Msglen;
|
||||||
|
|
||||||
|
@ -2437,7 +2444,7 @@ static struct speed_struct
|
||||||
HANDLE OpenCOMPort(VOID * pPort, int speed, BOOL SetDTR, BOOL SetRTS, BOOL Quiet, int Stopbits)
|
HANDLE OpenCOMPort(VOID * pPort, int speed, BOOL SetDTR, BOOL SetRTS, BOOL Quiet, int Stopbits)
|
||||||
{
|
{
|
||||||
char Port[256];
|
char Port[256];
|
||||||
char buf[512];
|
char buf[100];
|
||||||
|
|
||||||
// Linux Version.
|
// Linux Version.
|
||||||
|
|
||||||
|
@ -2447,8 +2454,8 @@ HANDLE OpenCOMPort(VOID * pPort, int speed, BOOL SetDTR, BOOL SetRTS, BOOL Quiet
|
||||||
struct termios term;
|
struct termios term;
|
||||||
struct speed_struct *s;
|
struct speed_struct *s;
|
||||||
|
|
||||||
if ((uintptr_t)pPort < 256)
|
if ((UINT)pPort < 256)
|
||||||
sprintf(Port, "%s/com%d", BPQDirectory, (int)(uintptr_t)pPort);
|
sprintf(Port, "%s/com%d", BPQDirectory, (int)pPort);
|
||||||
else
|
else
|
||||||
strcpy(Port, pPort);
|
strcpy(Port, pPort);
|
||||||
|
|
||||||
|
@ -3681,7 +3688,7 @@ VOID OpenReportingSockets()
|
||||||
{
|
{
|
||||||
// Enable Node Map Reports
|
// Enable Node Map Reports
|
||||||
|
|
||||||
ReportTimer = 1200; // 2 mins - Give Rigcontrol time to start
|
ReportTimer = 60;
|
||||||
|
|
||||||
ReportSocket = socket(AF_INET,SOCK_DGRAM,0);
|
ReportSocket = socket(AF_INET,SOCK_DGRAM,0);
|
||||||
|
|
||||||
|
@ -3707,11 +3714,6 @@ VOID OpenReportingSockets()
|
||||||
Chatreportdest.sin_port = htons(81);
|
Chatreportdest.sin_port = htons(81);
|
||||||
|
|
||||||
_beginthread(ResolveUpdateThread, 0, NULL);
|
_beginthread(ResolveUpdateThread, 0, NULL);
|
||||||
|
|
||||||
printf("MQTT Enabled %d\n", MQTT);
|
|
||||||
|
|
||||||
if (MQTT)
|
|
||||||
MQTTConnect(MQTT_HOST, MQTT_PORT, MQTT_USER, MQTT_PASS);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID WriteMiniDumpThread();
|
VOID WriteMiniDumpThread();
|
||||||
|
@ -4759,7 +4761,7 @@ LRESULT CALLBACK UIWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam
|
||||||
extern struct DATAMESSAGE * REPLYBUFFER;
|
extern struct DATAMESSAGE * REPLYBUFFER;
|
||||||
char * __cdecl Cmdprintf(TRANSPORTENTRY * Session, char * Bufferptr, const char * format, ...);
|
char * __cdecl Cmdprintf(TRANSPORTENTRY * Session, char * Bufferptr, const char * format, ...);
|
||||||
|
|
||||||
void GetPortCTEXT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
void GetPortCTEXT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char FN[250];
|
char FN[250];
|
||||||
FILE *hFile;
|
FILE *hFile;
|
||||||
|
@ -4912,7 +4914,7 @@ SOCKET OpenHTTPSock(char * Host)
|
||||||
{
|
{
|
||||||
err = WSAGetLastError();
|
err = WSAGetLastError();
|
||||||
|
|
||||||
Debugprintf("Resolve Failed for %s %d %x", Host, err, err);
|
Debugprintf("Resolve Failed for %s %d %x", "api.winlink.org", err, err);
|
||||||
return 0 ; // Resolve failed
|
return 0 ; // Resolve failed
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4945,7 +4947,7 @@ SOCKET OpenHTTPSock(char * Host)
|
||||||
}
|
}
|
||||||
|
|
||||||
static char HeaderTemplate[] = "POST %s HTTP/1.1\r\n"
|
static char HeaderTemplate[] = "POST %s HTTP/1.1\r\n"
|
||||||
"Accept: app N B lication/json\r\n"
|
"Accept: application/json\r\n"
|
||||||
// "Accept-Encoding: gzip,deflate,gzip, deflate\r\n"
|
// "Accept-Encoding: gzip,deflate,gzip, deflate\r\n"
|
||||||
"Content-Type: application/json\r\n"
|
"Content-Type: application/json\r\n"
|
||||||
"Host: %s:%d\r\n"
|
"Host: %s:%d\r\n"
|
||||||
|
@ -4955,24 +4957,14 @@ static char HeaderTemplate[] = "POST %s HTTP/1.1\r\n"
|
||||||
"\r\n";
|
"\r\n";
|
||||||
|
|
||||||
|
|
||||||
DllExport VOID WINAPI SendWebRequest(char * Host, char * Request, char * Params, char * Return)
|
VOID SendWebRequest(SOCKET sock, char * Host, char * Request, char * Params, int Len, char * Return)
|
||||||
{
|
{
|
||||||
SOCKET sock;
|
|
||||||
int InputLen = 0;
|
int InputLen = 0;
|
||||||
int inptr = 0;
|
int inptr = 0;
|
||||||
char Buffer[4096];
|
char Buffer[4096];
|
||||||
char Header[256];
|
char Header[256];
|
||||||
char * ptr, * ptr1;
|
char * ptr, * ptr1;
|
||||||
int Sent;
|
int Sent;
|
||||||
int Len = strlen(Params);
|
|
||||||
|
|
||||||
if (M0LTEMap == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
sock = OpenHTTPSock(Host);
|
|
||||||
|
|
||||||
if (sock == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
#ifdef LINBPQ
|
#ifdef LINBPQ
|
||||||
sprintf(Header, HeaderTemplate, Request, Host, 80, Len, "linbpq/", VersionString, Params);
|
sprintf(Header, HeaderTemplate, Request, Host, 80, Len, "linbpq/", VersionString, Params);
|
||||||
|
@ -4986,7 +4978,6 @@ DllExport VOID WINAPI SendWebRequest(char * Host, char * Request, char * Params,
|
||||||
{
|
{
|
||||||
int Err = WSAGetLastError();
|
int Err = WSAGetLastError();
|
||||||
Debugprintf("Error %d from Web Update send()", Err);
|
Debugprintf("Error %d from Web Update send()", Err);
|
||||||
closesocket(sock);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4998,10 +4989,12 @@ DllExport VOID WINAPI SendWebRequest(char * Host, char * Request, char * Params,
|
||||||
{
|
{
|
||||||
int Err = WSAGetLastError();
|
int Err = WSAGetLastError();
|
||||||
Debugprintf("Error %d from Web Update recv()", Err);
|
Debugprintf("Error %d from Web Update recv()", Err);
|
||||||
closesocket(sock);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// As we are using a persistant connection, can't look for close. Check
|
||||||
|
// for complete message
|
||||||
|
|
||||||
inptr += InputLen;
|
inptr += InputLen;
|
||||||
|
|
||||||
Buffer[inptr] = 0;
|
Buffer[inptr] = 0;
|
||||||
|
@ -5040,9 +5033,10 @@ DllExport VOID WINAPI SendWebRequest(char * Host, char * Request, char * Params,
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
strlop(Buffer, 13);
|
strlop(Buffer, 13);
|
||||||
|
Debugprintf("Map Update Params - %s", Params);
|
||||||
|
|
||||||
Debugprintf("Map Update failed - %s", Buffer);
|
Debugprintf("Map Update failed - %s", Buffer);
|
||||||
}
|
}
|
||||||
closesocket(sock);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5054,7 +5048,6 @@ DllExport VOID WINAPI SendWebRequest(char * Host, char * Request, char * Params,
|
||||||
{
|
{
|
||||||
// Just accept anything until I've sorted things with Lee
|
// Just accept anything until I've sorted things with Lee
|
||||||
Debugprintf("%s", ptr1);
|
Debugprintf("%s", ptr1);
|
||||||
closesocket(sock);
|
|
||||||
Debugprintf("Web Database update ok");
|
Debugprintf("Web Database update ok");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -5167,7 +5160,6 @@ void SendDataToPktMap(char *Msg)
|
||||||
char * Use;
|
char * Use;
|
||||||
char * Type;
|
char * Type;
|
||||||
char * Modulation;
|
char * Modulation;
|
||||||
char * Usage;
|
|
||||||
|
|
||||||
char locked[] = " ! ";
|
char locked[] = " ! ";
|
||||||
int Percent = 0;
|
int Percent = 0;
|
||||||
|
@ -5272,10 +5264,6 @@ void SendDataToPktMap(char *Msg)
|
||||||
Type = "RF";
|
Type = "RF";
|
||||||
Bitrate = 0;
|
Bitrate = 0;
|
||||||
Modulation = "FSK";
|
Modulation = "FSK";
|
||||||
Usage = "Access";
|
|
||||||
|
|
||||||
if (PORT->PortFreq)
|
|
||||||
Freq = PORT->PortFreq;
|
|
||||||
|
|
||||||
if (PORT->PORTTYPE == 0)
|
if (PORT->PORTTYPE == 0)
|
||||||
{
|
{
|
||||||
|
@ -5333,7 +5321,7 @@ void SendDataToPktMap(char *Msg)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Freq == 0 && TNC->RIG)
|
if (TNC->RIG)
|
||||||
Freq = TNC->RIG->RigFreq * 1000000;
|
Freq = TNC->RIG->RigFreq * 1000000;
|
||||||
|
|
||||||
switch (TNC->Hardware) // Hardware Type
|
switch (TNC->Hardware) // Hardware Type
|
||||||
|
@ -5399,15 +5387,6 @@ void SendDataToPktMap(char *Msg)
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case H_KISSHF:
|
|
||||||
|
|
||||||
// Try to get mode from ID then drop through
|
|
||||||
|
|
||||||
if (stristr(PORT->PORTDESCRIPTION, "BPSK"))
|
|
||||||
{
|
|
||||||
Modulation = "BPSK";
|
|
||||||
}
|
|
||||||
|
|
||||||
case H_WINMOR:
|
case H_WINMOR:
|
||||||
case H_V4:
|
case H_V4:
|
||||||
|
|
||||||
|
@ -5416,7 +5395,7 @@ void SendDataToPktMap(char *Msg)
|
||||||
case H_UIARQ:
|
case H_UIARQ:
|
||||||
case H_ARDOP:
|
case H_ARDOP:
|
||||||
case H_VARA:
|
case H_VARA:
|
||||||
|
case H_KISSHF:
|
||||||
case H_FREEDATA:
|
case H_FREEDATA:
|
||||||
|
|
||||||
// TCP
|
// TCP
|
||||||
|
@ -5452,58 +5431,12 @@ void SendDataToPktMap(char *Msg)
|
||||||
while (*(ptr2) == ' ' && ptr2 != ID)
|
while (*(ptr2) == ' ' && ptr2 != ID)
|
||||||
*(ptr2--) = 0;
|
*(ptr2--) = 0;
|
||||||
|
|
||||||
if (PORT->M0LTEMapInfo)
|
|
||||||
{
|
|
||||||
// Override with user configured values - RF,7.045,BPSK,300,300,Access
|
|
||||||
|
|
||||||
char param[256];
|
|
||||||
char *p1, *p2, *p3, *p4, *p5;
|
|
||||||
|
|
||||||
strcpy(param, PORT->M0LTEMapInfo);
|
|
||||||
|
|
||||||
p1 = strlop(param, ',');
|
|
||||||
p2 = strlop(p1, ',');
|
|
||||||
p3 = strlop(p2, ',');
|
|
||||||
p4 = strlop(p3, ',');
|
|
||||||
p5 = strlop(p4, ',');
|
|
||||||
|
|
||||||
// int n = sscanf(PORT->M0LTEMapInfo, "%s,%s,%s,%s,%s,%s", &p1, &p2, &p3, &p4, &p5, &p6);
|
|
||||||
|
|
||||||
if (p5)
|
|
||||||
{
|
|
||||||
if (param[0]) Type = param;
|
|
||||||
|
|
||||||
if (p1[0])
|
|
||||||
{
|
|
||||||
// if set to DIAL+=n and frequency set from config or rigcontrol modify it
|
|
||||||
|
|
||||||
uint64_t offset = 0;
|
|
||||||
|
|
||||||
if (_memicmp(p1, "DIAL+", 5) == 0)
|
|
||||||
offset = atoi(&p1[5]);
|
|
||||||
else if (_memicmp(p1, "DIAL-", 5) == 0)
|
|
||||||
offset = -atoi(&p1[5]);
|
|
||||||
else
|
|
||||||
Freq = atof(p1) * 1000000;
|
|
||||||
|
|
||||||
if (Freq != 0)
|
|
||||||
Freq += offset;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if (p2[0]) Modulation = p2;
|
|
||||||
if (p3[0]) Baud = atoi(p3);
|
|
||||||
if (p4[0]) Bitrate = atoi(p4);
|
|
||||||
if (p5[0]) Usage = p5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ptr += sprintf(ptr, "{\"id\": \"%d\",\"linkType\": \"%s\","
|
ptr += sprintf(ptr, "{\"id\": \"%d\",\"linkType\": \"%s\","
|
||||||
"\"freq\": \"%lld\",\"mode\": \"%s\",\"modulation\": \"%s\","
|
"\"freq\": \"%lld\",\"mode\": \"%s\",\"modulation\": \"%s\","
|
||||||
"\"baud\": \"%d\",\"bitrate\": \"%d\",\"usage\": \"%s\",\"comment\": \"%s\"},\r\n",
|
"\"baud\": \"%d\",\"bitrate\": \"%d\",\"usage\": \"%s\",\"comment\": \"%s\"},\r\n",
|
||||||
PortNo, Type,
|
PortNo, Type,
|
||||||
Freq, Mode, Modulation,
|
Freq, Mode, Modulation,
|
||||||
Baud, Bitrate, Usage, ID);
|
Baud, Bitrate, "Access", ID);
|
||||||
|
|
||||||
// G7TAJ //
|
// G7TAJ //
|
||||||
// make MH list to be added later
|
// make MH list to be added later
|
||||||
|
@ -5593,11 +5526,19 @@ void SendDataToPktMap(char *Msg)
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
// "contact": "string",
|
// "contact": "string",
|
||||||
// "neighbours": [{"node": "G7TAJ","port": "30"}]
|
// "neighbours": [{"node": "G7TAJ","port": "30"}]
|
||||||
|
|
||||||
SendWebRequest("packetnodes.spots.radio", Request, Params, Return);
|
sock = OpenHTTPSock("packetnodes.spots.radio");
|
||||||
|
|
||||||
|
if (sock == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
SendWebRequest(sock, "packetnodes.spots.radio", Request, Params, strlen(Params), Return);
|
||||||
|
closesocket(sock);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ="{\"neighbours\": [{\"node\": \"G7TAJ\",\"port\": \"30\"}]}";
|
// ="{\"neighbours\": [{\"node\": \"G7TAJ\",\"port\": \"30\"}]}";
|
||||||
|
|
|
@ -0,0 +1,164 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<VCProjectVersion>15.0</VCProjectVersion>
|
||||||
|
<ProjectGuid>{271FDA0A-4F41-4F35-8227-9F2F29AA5A25}</ProjectGuid>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<RootNamespace>ConsoleApplication2</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||||||
|
<ProjectName>ConfigDirewolf</ProjectName>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<OutputFile>c:\devprogs\bpq32\ConfigDirewolf.exe</OutputFile>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="pch.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="ConfigDirewolf.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
|
@ -0,0 +1,164 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<VCProjectVersion>15.0</VCProjectVersion>
|
||||||
|
<ProjectGuid>{2AD91A25-DF1B-462E-8CCB-CD1ABC627AA5}</ProjectGuid>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<RootNamespace>ConsoleApplication2</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||||||
|
<ProjectName>ConfigWinRPR</ProjectName>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<OutputFile>c:\devprogs\bpq32\ConfigWinRPR.exe</OutputFile>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="pch.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="ConfigWinRPR.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
4
DRATS.c
4
DRATS.c
|
@ -168,7 +168,7 @@ int AllocateDRATSStream(struct DRATSSession * Sess)
|
||||||
|
|
||||||
if (Stream == 255) return 0;
|
if (Stream == 255) return 0;
|
||||||
|
|
||||||
if (memcmp(Sess->CallTo, "NODE", 4) == 0)
|
if (memcmp(Sess->CallTo, "NODE", 6) == 0)
|
||||||
{
|
{
|
||||||
// Just connect to command level on switch
|
// Just connect to command level on switch
|
||||||
}
|
}
|
||||||
|
@ -563,7 +563,7 @@ void DRATSConnectionLost(struct ConnectionInfo * sockptr)
|
||||||
#define ZEXPORT __stdcall
|
#define ZEXPORT __stdcall
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <zlib.h>
|
#include "zlib.h"
|
||||||
|
|
||||||
|
|
||||||
int doinflate(unsigned char * source, unsigned char * dest, int Len, int destlen, int * outLen)
|
int doinflate(unsigned char * source, unsigned char * dest, int Len, int destlen, int * outLen)
|
||||||
|
|
129
Events.c
129
Events.c
|
@ -23,8 +23,6 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
|
|
||||||
#include "compatbits.h"
|
#include "compatbits.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "asmstrucs.h"
|
|
||||||
#include "tncinfo.h"
|
|
||||||
|
|
||||||
VOID __cdecl Debugprintf(const char * format, ...);
|
VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
|
|
||||||
|
@ -39,11 +37,6 @@ VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern BOOL EventsEnabled;
|
extern BOOL EventsEnabled;
|
||||||
void MQTTReportSession(char * Msg);
|
|
||||||
extern int MQTT;
|
|
||||||
|
|
||||||
|
|
||||||
extern char Modenames[19][10];
|
|
||||||
|
|
||||||
// Runs use specified routine on certain event
|
// Runs use specified routine on certain event
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
|
@ -114,125 +107,3 @@ DllExport void APIENTRY RunEventProgram(char * Program, char * Param)
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void hookL2SessionAccepted(int Port, char * remotecall, char * ourcall, struct _LINKTABLE * LINK)
|
|
||||||
{
|
|
||||||
// Incoming SABM
|
|
||||||
|
|
||||||
LINK->ConnectTime = time(NULL);
|
|
||||||
LINK->bytesTXed = LINK->bytesRXed = 0;
|
|
||||||
|
|
||||||
strcpy(LINK->callingCall, remotecall);
|
|
||||||
strcpy(LINK->receivingCall, ourcall);
|
|
||||||
strcpy(LINK->Direction, "In");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void hookL2SessionDeleted(struct _LINKTABLE * LINK)
|
|
||||||
{
|
|
||||||
// calculate session time and av bytes/min in and out
|
|
||||||
|
|
||||||
if (LINK->ConnectTime)
|
|
||||||
{
|
|
||||||
if (LINK->bytesTXed == 0 && LINK->bytesRXed == 0)
|
|
||||||
{
|
|
||||||
// assume failed connect and ignore for now - maybe log later
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
char Msg[256];
|
|
||||||
char timestamp[16];
|
|
||||||
time_t sessionTime = time(NULL) - LINK->ConnectTime;
|
|
||||||
double avBytesSent = LINK->bytesTXed / (sessionTime / 60.0);
|
|
||||||
double avBytesRXed = LINK->bytesRXed / (sessionTime / 60.0);
|
|
||||||
time_t Now = time(NULL);
|
|
||||||
struct tm * TM = localtime(&Now);
|
|
||||||
|
|
||||||
sprintf(timestamp, "%02d:%02d:%02d", TM->tm_hour, TM->tm_min, TM->tm_sec);
|
|
||||||
|
|
||||||
if (sessionTime == 0)
|
|
||||||
sessionTime = 1; // Or will get divide by zero error
|
|
||||||
|
|
||||||
Debugprintf("KISS Session Stats Port %d %s %s %d secs Bytes Sent %d BPM %4.2f Bytes Received %d %4.2f BPM ",
|
|
||||||
LINK->LINKPORT->PORTNUMBER, LINK->callingCall, LINK->receivingCall, sessionTime, LINK->bytesTXed, avBytesSent, LINK->bytesRXed, avBytesRXed, timestamp);
|
|
||||||
|
|
||||||
|
|
||||||
sprintf(Msg, "{\"mode\": \"%s\", \"direction\": \"%s\", \"port\": %d, \"callfrom\": \"%s\", \"callto\": \"%s\", \"time\": %d, \"bytesSent\": %d,"
|
|
||||||
"\"BPMSent\": %4.2f, \"BytesReceived\": %d, \"BPMReceived\": %4.2f, \"timestamp\": \"%s\"}",
|
|
||||||
"KISS", LINK->Direction, LINK->LINKPORT->PORTNUMBER, LINK->callingCall, LINK->receivingCall, sessionTime,
|
|
||||||
LINK->bytesTXed, avBytesSent, LINK->bytesRXed, avBytesRXed, timestamp);
|
|
||||||
|
|
||||||
if (MQTT)
|
|
||||||
MQTTReportSession(Msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
LINK->ConnectTime = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void hookL2SessionAttempt(int Port, char * ourcall, char * remotecall, struct _LINKTABLE * LINK)
|
|
||||||
{
|
|
||||||
LINK->ConnectTime = time(NULL);
|
|
||||||
LINK->bytesTXed = LINK->bytesRXed = 0;
|
|
||||||
|
|
||||||
strcpy(LINK->callingCall, ourcall);
|
|
||||||
strcpy(LINK->receivingCall, remotecall);
|
|
||||||
strcpy(LINK->Direction, "Out");
|
|
||||||
}
|
|
||||||
|
|
||||||
void hookL4SessionAttempt(struct STREAMINFO * STREAM, char * remotecall, char * ourcall)
|
|
||||||
{
|
|
||||||
// Outgoing Connect
|
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
|
||||||
STREAM->bytesTXed = STREAM->bytesRXed = 0;
|
|
||||||
|
|
||||||
strcpy(STREAM->callingCall, ourcall);
|
|
||||||
strcpy(STREAM->receivingCall, remotecall);
|
|
||||||
strcpy(STREAM->Direction, "Out");
|
|
||||||
}
|
|
||||||
|
|
||||||
void hookL4SessionAccepted(struct STREAMINFO * STREAM, char * remotecall, char * ourcall)
|
|
||||||
{
|
|
||||||
// Incoming Connect
|
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
|
||||||
STREAM->bytesTXed = STREAM->bytesRXed = 0;
|
|
||||||
|
|
||||||
strcpy(STREAM->callingCall, remotecall);
|
|
||||||
strcpy(STREAM->receivingCall, ourcall);
|
|
||||||
strcpy(STREAM->Direction, "In");
|
|
||||||
}
|
|
||||||
|
|
||||||
void hookL4SessionDeleted(struct TNCINFO * TNC, struct STREAMINFO * STREAM)
|
|
||||||
{
|
|
||||||
char Msg[256];
|
|
||||||
|
|
||||||
char timestamp[16];
|
|
||||||
|
|
||||||
if (STREAM->ConnectTime)
|
|
||||||
{
|
|
||||||
time_t sessionTime = time(NULL) - STREAM->ConnectTime;
|
|
||||||
double avBytesRXed = STREAM->bytesRXed / (sessionTime / 60.0);
|
|
||||||
double avBytesSent = STREAM->bytesTXed / (sessionTime / 60.0);
|
|
||||||
time_t Now = time(NULL);
|
|
||||||
struct tm * TM = localtime(&Now);
|
|
||||||
sprintf(timestamp, "%02d:%02d:%02d", TM->tm_hour, TM->tm_min, TM->tm_sec);
|
|
||||||
|
|
||||||
if (sessionTime == 0)
|
|
||||||
sessionTime = 1; // Or will get divide by zero error
|
|
||||||
|
|
||||||
sprintf(Msg, "{\"mode\": \"%s\", \"direction\": \"%s\", \"port\": %d, \"callfrom\": \"%s\", \"callto\": \"%s\", \"time\": %d, \"bytesSent\": %d,"
|
|
||||||
"\"BPMSent\": %4.2f, \"BytesReceived\": %d, \"BPMReceived\": %4.2f, \"timestamp\": \"%s\"}",
|
|
||||||
Modenames[TNC->Hardware - 1], STREAM->Direction, TNC->Port, STREAM->callingCall, STREAM->receivingCall, sessionTime,
|
|
||||||
STREAM->bytesTXed, avBytesSent, STREAM->bytesRXed, avBytesRXed, timestamp);
|
|
||||||
|
|
||||||
if (MQTT)
|
|
||||||
MQTTReportSession(Msg);
|
|
||||||
|
|
||||||
STREAM->ConnectTime = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
#include "bpqmail.h"
|
#include "bpqmail.h"
|
||||||
|
|
||||||
int32_t Encode(char * in, char * out, int32_t inlen, BOOL B1Protocol, int Compress);
|
int32_t Encode(char * in, char * out, int32_t inlen, BOOL B1Protocol, int Compress);
|
||||||
void MQTTMessageEvent(void* message);
|
|
||||||
|
|
||||||
int MaxRXSize = 99999;
|
int MaxRXSize = 99999;
|
||||||
int MaxTXSize = 99999;
|
int MaxTXSize = 99999;
|
||||||
|
@ -807,11 +807,6 @@ VOID FlagSentMessages(CIRCUIT * conn, struct UserInfo * user)
|
||||||
FBBHeader->FwdMsg->datechanged=time(NULL);
|
FBBHeader->FwdMsg->datechanged=time(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(FBBHeader->FwdMsg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
FBBHeader->FwdMsg->Locked = 0; // Unlock
|
FBBHeader->FwdMsg->Locked = 0; // Unlock
|
||||||
conn->UserPointer->ForwardingInfo->MsgCount--;
|
conn->UserPointer->ForwardingInfo->MsgCount--;
|
||||||
}
|
}
|
||||||
|
|
65
FLDigi.c
65
FLDigi.c
|
@ -65,12 +65,12 @@ extern int (WINAPI FAR *GetModuleFileNameExPtr)();
|
||||||
;
|
;
|
||||||
int SemHeldByAPI;
|
int SemHeldByAPI;
|
||||||
|
|
||||||
void ConnecttoFLDigiThread(void * portptr);
|
static void ConnecttoFLDigiThread(void * portptr);
|
||||||
|
|
||||||
void CreateMHWindow();
|
void CreateMHWindow();
|
||||||
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
||||||
|
|
||||||
int ConnecttoFLDigi(int port);
|
static int ConnecttoFLDigi();
|
||||||
static int ProcessReceivedData(int bpqport);
|
static int ProcessReceivedData(int bpqport);
|
||||||
static int ProcessLine(char * buf, int Port);
|
static int ProcessLine(char * buf, int Port);
|
||||||
int KillTNC(struct TNCINFO * TNC);
|
int KillTNC(struct TNCINFO * TNC);
|
||||||
|
@ -93,7 +93,6 @@ VOID CheckFLDigiData(struct TNCINFO * TNC);
|
||||||
VOID SendPacket(struct TNCINFO * TNC, UCHAR * Msg, int MsgLen);
|
VOID SendPacket(struct TNCINFO * TNC, UCHAR * Msg, int MsgLen);
|
||||||
int KissEncode(UCHAR * inbuff, UCHAR * outbuff, int len);
|
int KissEncode(UCHAR * inbuff, UCHAR * outbuff, int len);
|
||||||
VOID SendXMLCommand(struct TNCINFO * TNC, char * Command, char * Value, char ParamType);
|
VOID SendXMLCommand(struct TNCINFO * TNC, char * Command, char * Value, char ParamType);
|
||||||
VOID SendXMLCommandInt(struct TNCINFO * TNC, char * Command, int Value, char ParamType);
|
|
||||||
VOID FLSlowTimer(struct TNCINFO * TNC);
|
VOID FLSlowTimer(struct TNCINFO * TNC);
|
||||||
VOID SendKISSCommand(struct TNCINFO * TNC, char * Msg);
|
VOID SendKISSCommand(struct TNCINFO * TNC, char * Msg);
|
||||||
|
|
||||||
|
@ -102,6 +101,8 @@ VOID SuspendOtherPorts(struct TNCINFO * ThisTNC);
|
||||||
VOID ReleaseOtherPorts(struct TNCINFO * ThisTNC);
|
VOID ReleaseOtherPorts(struct TNCINFO * ThisTNC);
|
||||||
VOID WritetoTrace(struct TNCINFO * TNC, char * Msg, int Len);
|
VOID WritetoTrace(struct TNCINFO * TNC, char * Msg, int Len);
|
||||||
|
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
|
|
||||||
extern UCHAR BPQDirectory[];
|
extern UCHAR BPQDirectory[];
|
||||||
|
|
||||||
#define MAXMPSKPORTS 16
|
#define MAXMPSKPORTS 16
|
||||||
|
@ -591,7 +592,7 @@ pollloop:
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
SendXMLCommandInt(TNC, "modem.set_carrier", atoi(&buff->L2DATA[5]), 'I');
|
SendXMLCommand(TNC, "modem.set_carrier", (char *)atoi(&buff->L2DATA[5]), 'I');
|
||||||
}
|
}
|
||||||
|
|
||||||
TNC->InternalCmd = TRUE;
|
TNC->InternalCmd = TRUE;
|
||||||
|
@ -1481,14 +1482,14 @@ static int ProcessLine(char * buf, int Port)
|
||||||
return (TRUE);
|
return (TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ConnecttoFLDigi(int port)
|
static int ConnecttoFLDigi(int port)
|
||||||
{
|
{
|
||||||
_beginthread(ConnecttoFLDigiThread, 0, (void *)(size_t)port);
|
_beginthread(ConnecttoFLDigiThread, 0, (void *)(size_t)port);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID ConnecttoFLDigiThread(void * portptr)
|
static VOID ConnecttoFLDigiThread(void * portptr)
|
||||||
{
|
{
|
||||||
int port = (int)(size_t)portptr;
|
int port = (int)(size_t)portptr;
|
||||||
char Msg[255];
|
char Msg[255];
|
||||||
|
@ -1636,7 +1637,7 @@ VOID ConnecttoFLDigiThread(void * portptr)
|
||||||
VOID UpdateStatsLine(struct TNCINFO * TNC, struct STREAMINFO * STREAM)
|
VOID UpdateStatsLine(struct TNCINFO * TNC, struct STREAMINFO * STREAM)
|
||||||
{
|
{
|
||||||
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %d Resent %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %d Resent %d Queued %d",
|
||||||
STREAM->bytesRXed, STREAM->bytesTXed, STREAM->BytesAcked, STREAM->BytesResent, STREAM->BytesOutstanding);
|
STREAM->BytesRXed, STREAM->BytesTXed, STREAM->BytesAcked, STREAM->BytesResent, STREAM->BytesOutstanding);
|
||||||
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2530,7 +2531,7 @@ VOID ProcessFLDigiData(struct TNCINFO * TNC, UCHAR * Input, int Len, char Channe
|
||||||
|
|
||||||
strcpy(STREAM->MyCall, call2);
|
strcpy(STREAM->MyCall, call2);
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
||||||
|
|
||||||
if (TNC->RIG && TNC->RIG != &TNC->DummyRig && strcmp(TNC->RIG->RigName, "PTT"))
|
if (TNC->RIG && TNC->RIG != &TNC->DummyRig && strcmp(TNC->RIG->RigName, "PTT"))
|
||||||
{
|
{
|
||||||
|
@ -2579,7 +2580,7 @@ VOID ProcessFLDigiData(struct TNCINFO * TNC, UCHAR * Input, int Len, char Channe
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// Make sure app is available
|
// Make sure app is available
|
||||||
|
@ -2689,7 +2690,7 @@ AckConnectRequest:
|
||||||
goto SendKReply; // Repeated ACK
|
goto SendKReply; // Repeated ACK
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
|
|
||||||
ARQ->ARQTimerState = 0;
|
ARQ->ARQTimerState = 0;
|
||||||
|
@ -2950,7 +2951,22 @@ SendKReply:
|
||||||
|
|
||||||
if (STREAM->Connected)
|
if (STREAM->Connected)
|
||||||
{
|
{
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
// Create a traffic record
|
||||||
|
|
||||||
|
char logmsg[120];
|
||||||
|
time_t Duration;
|
||||||
|
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1;
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
|
@ -3013,7 +3029,7 @@ SendKReply:
|
||||||
|
|
||||||
buffptr->Len = Len;
|
buffptr->Len = Len;
|
||||||
memcpy(buffptr->Data, &Input[1], Len);
|
memcpy(buffptr->Data, &Input[1], Len);
|
||||||
STREAM->bytesRXed += Len;
|
STREAM->BytesRXed += Len;
|
||||||
|
|
||||||
UpdateStatsLine(TNC, STREAM);
|
UpdateStatsLine(TNC, STREAM);
|
||||||
|
|
||||||
|
@ -3130,7 +3146,7 @@ VOID SendARQData(struct TNCINFO * TNC, PMSGWITHLEN Buffer)
|
||||||
|
|
||||||
ARQ->TXHOLDQ[ARQ->TXSeq] = Buffer;
|
ARQ->TXHOLDQ[ARQ->TXSeq] = Buffer;
|
||||||
|
|
||||||
STREAM->bytesTXed += Origlen;
|
STREAM->BytesTXed += Origlen;
|
||||||
|
|
||||||
UpdateStatsLine(TNC, STREAM);
|
UpdateStatsLine(TNC, STREAM);
|
||||||
|
|
||||||
|
@ -3196,7 +3212,7 @@ VOID FLReleaseTNC(struct TNCINFO * TNC)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
SendXMLCommand(TNC, "modem.set_by_name", TNC->FLInfo->DefaultMode, 'S');
|
SendXMLCommand(TNC, "modem.set_by_name", TNC->FLInfo->DefaultMode, 'S');
|
||||||
SendXMLCommandInt(TNC, "modem.set_carrier", TNC->FLInfo->DefaultFreq, 'I');
|
SendXMLCommand(TNC, "modem.set_carrier", (char *)TNC->FLInfo->DefaultFreq, 'I');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Start Scanner
|
// Start Scanner
|
||||||
|
@ -3894,27 +3910,6 @@ VOID SendXMLCommand(struct TNCINFO * TNC, char * Command, char * Value, char Par
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SendXMLCommandInt(struct TNCINFO * TNC, char * Command, int Value, char ParamType)
|
|
||||||
{
|
|
||||||
int Len;
|
|
||||||
char ReqBuf[512];
|
|
||||||
char SendBuff[512];
|
|
||||||
struct FLINFO * FL = TNC->FLInfo;
|
|
||||||
struct ARQINFO * ARQ = TNC->ARQInfo;
|
|
||||||
char ValueString[256] ="";
|
|
||||||
|
|
||||||
if (!TNC->CONNECTED || TNC->FLInfo->KISSMODE)
|
|
||||||
return;
|
|
||||||
|
|
||||||
sprintf(ValueString, "<params><param><value><i4>%d</i4></value></param></params\r\n>", Value);
|
|
||||||
|
|
||||||
strcpy(FL->LastXML, Command);
|
|
||||||
Len = sprintf(ReqBuf, Req, FL->LastXML, ValueString);
|
|
||||||
Len = sprintf(SendBuff, MsgHddr, Len, ReqBuf);
|
|
||||||
send(TNC->TCPSock, SendBuff, Len, 0);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
VOID SendXMLPoll(struct TNCINFO * TNC)
|
VOID SendXMLPoll(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
int Len;
|
int Len;
|
||||||
|
|
|
@ -0,0 +1,219 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="FormatHTML"
|
||||||
|
ProjectGUID="{2B892B53-6549-4872-AF51-45280ADC8AB5}"
|
||||||
|
RootNamespace="FormatHTML"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="0"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="3"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib $(NoInherit)"
|
||||||
|
LinkIncremental="2"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="1"
|
||||||
|
WholeProgramOptimization="1"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||||
|
RuntimeLibrary="2"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib $(NoInherit)"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\FormatHTML.cpp"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
CompileAs="1"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\stdafx.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\stdafx.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ReadMe.txt"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
132
FreeDATA.c
132
FreeDATA.c
|
@ -347,6 +347,41 @@ loop:
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL FreeDataReadConfigFile(int Port, int ProcLine())
|
||||||
|
{
|
||||||
|
char buf[256],errbuf[256];
|
||||||
|
|
||||||
|
Config = PortConfig[Port];
|
||||||
|
|
||||||
|
if (Config)
|
||||||
|
{
|
||||||
|
// Using config from bpq32.cfg
|
||||||
|
|
||||||
|
if (strlen(Config) == 0)
|
||||||
|
{
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
ptr1 = Config;
|
||||||
|
ptr2 = strchr(ptr1, 13);
|
||||||
|
|
||||||
|
if (!ProcLine(buf, Port))
|
||||||
|
{
|
||||||
|
WritetoConsoleLocal("\n");
|
||||||
|
WritetoConsoleLocal("Bad config record ");
|
||||||
|
WritetoConsoleLocal(errbuf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sprintf(buf," ** Error - No Configuration info in bpq32.cfg");
|
||||||
|
WritetoConsoleLocal(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
VOID SuspendOtherPorts(struct TNCINFO * ThisTNC);
|
VOID SuspendOtherPorts(struct TNCINFO * ThisTNC);
|
||||||
VOID ReleaseOtherPorts(struct TNCINFO * ThisTNC);
|
VOID ReleaseOtherPorts(struct TNCINFO * ThisTNC);
|
||||||
|
@ -651,7 +686,8 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
|
|
||||||
if (buffptr == 0) return (0); // No buffers, so ignore
|
if (buffptr == 0) return (0); // No buffers, so ignore
|
||||||
|
|
||||||
buffptr->Len = sprintf(&buffptr->Data[0], "No Connection to TNC\r");
|
buffptr->Len = 36;
|
||||||
|
memcpy(&buffptr->Data[0], "No Connection to TNC\r", 36);
|
||||||
|
|
||||||
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
||||||
|
|
||||||
|
@ -832,7 +868,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
char Message[256];
|
char Message[256];
|
||||||
int Len, ret;
|
int Len, ret;
|
||||||
|
|
||||||
Len = sprintf(Message, "%s", TXF);
|
Len = sprintf(Message, TXF);
|
||||||
ret = send(TNC->TCPDataSock, (char *)&Message, Len, 0);
|
ret = send(TNC->TCPDataSock, (char *)&Message, Len, 0);
|
||||||
|
|
||||||
if (buffptr)
|
if (buffptr)
|
||||||
|
@ -936,7 +972,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
memset(STREAM->RemoteCall, 0, 10);
|
memset(STREAM->RemoteCall, 0, 10);
|
||||||
strcpy(STREAM->RemoteCall, &buff->L2DATA[2]);
|
strcpy(STREAM->RemoteCall, &buff->L2DATA[2]);
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->PacketsSent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->PacketsSent = 0;
|
||||||
|
|
||||||
sprintf(TNC->WEB_TNCSTATE, "%s Connecting to %s", STREAM->MyCall, STREAM->RemoteCall);
|
sprintf(TNC->WEB_TNCSTATE, "%s Connecting to %s", STREAM->MyCall, STREAM->RemoteCall);
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
||||||
|
@ -1846,7 +1882,7 @@ VOID FreeDataProcessTNCMessage(struct TNCINFO * TNC, char * Call, unsigned char
|
||||||
if (App < 32)
|
if (App < 32)
|
||||||
{
|
{
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
||||||
|
@ -1915,7 +1951,7 @@ VOID FreeDataProcessTNCMessage(struct TNCINFO * TNC, char * Call, unsigned char
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->PacketsSent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->PacketsSent = 0;
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
|
|
||||||
// Send Connect ACK
|
// Send Connect ACK
|
||||||
|
@ -1984,7 +2020,20 @@ VOID FreeDataProcessTNCMessage(struct TNCINFO * TNC, char * Call, unsigned char
|
||||||
{
|
{
|
||||||
// Create a traffic record
|
// Create a traffic record
|
||||||
|
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
char logmsg[120];
|
||||||
|
time_t Duration;
|
||||||
|
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1;
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
STREAM->Connected = FALSE; // Back to Command Mode
|
STREAM->Connected = FALSE; // Back to Command Mode
|
||||||
|
@ -2014,7 +2063,7 @@ VOID FreeDataProcessTNCMessage(struct TNCINFO * TNC, char * Call, unsigned char
|
||||||
WritetoTrace(TNC, Msg, 256);
|
WritetoTrace(TNC, Msg, 256);
|
||||||
Len -= 256;
|
Len -= 256;
|
||||||
Msg += 256;
|
Msg += 256;
|
||||||
STREAM->bytesRXed += 256;
|
STREAM->BytesRXed += 256;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2023,9 +2072,9 @@ VOID FreeDataProcessTNCMessage(struct TNCINFO * TNC, char * Call, unsigned char
|
||||||
memcpy(buffptr->Data, Msg, Len);
|
memcpy(buffptr->Data, Msg, Len);
|
||||||
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
||||||
WritetoTrace(TNC, Msg, Len);
|
WritetoTrace(TNC, Msg, Len);
|
||||||
STREAM->bytesRXed += Len;
|
STREAM->BytesRXed += Len;
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->bytesRXed, TNC->FreeDataInfo->toSendCount);
|
STREAM->BytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->BytesRXed, TNC->FreeDataInfo->toSendCount);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -2207,7 +2256,7 @@ VOID FreeDataProcessNewConnect(struct TNCINFO * TNC, char * fromCall, char * toC
|
||||||
if (App < 32)
|
if (App < 32)
|
||||||
{
|
{
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
||||||
|
@ -2278,7 +2327,7 @@ VOID FreeDataProcessNewConnect(struct TNCINFO * TNC, char * fromCall, char * toC
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->PacketsSent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->PacketsSent = 0;
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -2378,7 +2427,7 @@ void FlushData(struct TNCINFO * TNC)
|
||||||
Info->toSendTimeout = 0;
|
Info->toSendTimeout = 0;
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->bytesRXed, TNC->FreeDataInfo->toSendCount);
|
STREAM->BytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->BytesRXed, TNC->FreeDataInfo->toSendCount);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -2401,10 +2450,10 @@ static int SendAsFile(struct TNCINFO * TNC, char * Call, char * Msg, int Len)
|
||||||
Info->toSendCount += Len;
|
Info->toSendCount += Len;
|
||||||
Info->toSendTimeout = 10; // About a second
|
Info->toSendTimeout = 10; // About a second
|
||||||
|
|
||||||
STREAM->bytesTXed += Len;
|
STREAM->BytesTXed += Len;
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->bytesRXed, TNC->FreeDataInfo->toSendCount);
|
STREAM->BytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->BytesRXed, TNC->FreeDataInfo->toSendCount);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
|
|
||||||
return Len;
|
return Len;
|
||||||
|
@ -2441,7 +2490,7 @@ static void SendCQ(struct TNCINFO * TNC)
|
||||||
char Message[256];
|
char Message[256];
|
||||||
int Len, ret;
|
int Len, ret;
|
||||||
|
|
||||||
Len = sprintf(Message, "%s", CQ);
|
Len = sprintf(Message, CQ);
|
||||||
ret = send(TNC->TCPDataSock, (char *)&Message, Len, 0);
|
ret = send(TNC->TCPDataSock, (char *)&Message, Len, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2456,7 +2505,7 @@ static void SendBeacon(struct TNCINFO * TNC, int Interval)
|
||||||
if (Interval > 0)
|
if (Interval > 0)
|
||||||
Len = sprintf(Message, Template1, Interval);
|
Len = sprintf(Message, Template1, Interval);
|
||||||
else
|
else
|
||||||
Len = sprintf(Message, "%s", Template2);
|
Len = sprintf(Message, Template2);
|
||||||
|
|
||||||
ret = send(TNC->TCPDataSock, (char *)&Message, Len, 0);
|
ret = send(TNC->TCPDataSock, (char *)&Message, Len, 0);
|
||||||
}
|
}
|
||||||
|
@ -2671,7 +2720,7 @@ void ProcessMessageObject(struct TNCINFO * TNC, char * This)
|
||||||
WritetoTrace(TNC, Line, 256);
|
WritetoTrace(TNC, Line, 256);
|
||||||
Len -= 256;
|
Len -= 256;
|
||||||
Line += 256;
|
Line += 256;
|
||||||
STREAM->bytesRXed += 256;
|
STREAM->BytesRXed += 256;
|
||||||
}
|
}
|
||||||
|
|
||||||
buffptr = GetBuff();
|
buffptr = GetBuff();
|
||||||
|
@ -2679,12 +2728,12 @@ void ProcessMessageObject(struct TNCINFO * TNC, char * This)
|
||||||
memcpy(buffptr->Data, Line, Len);
|
memcpy(buffptr->Data, Line, Len);
|
||||||
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
||||||
WritetoTrace(TNC, Line, Len);
|
WritetoTrace(TNC, Line, Len);
|
||||||
STREAM->bytesRXed += Len;
|
STREAM->BytesRXed += Len;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->bytesRXed, TNC->FreeDataInfo->toSendCount);
|
STREAM->BytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->BytesRXed, TNC->FreeDataInfo->toSendCount);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -2763,7 +2812,7 @@ void ProcessMessageObject(struct TNCINFO * TNC, char * This)
|
||||||
WritetoTrace(TNC, Line, 256);
|
WritetoTrace(TNC, Line, 256);
|
||||||
Len -= 256;
|
Len -= 256;
|
||||||
TEXT += 256;
|
TEXT += 256;
|
||||||
STREAM->bytesRXed += 256;
|
STREAM->BytesRXed += 256;
|
||||||
}
|
}
|
||||||
|
|
||||||
buffptr = GetBuff();
|
buffptr = GetBuff();
|
||||||
|
@ -2771,14 +2820,14 @@ void ProcessMessageObject(struct TNCINFO * TNC, char * This)
|
||||||
memcpy(buffptr->Data, Line, Len);
|
memcpy(buffptr->Data, Line, Len);
|
||||||
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
||||||
WritetoTrace(TNC, Line, Len);
|
WritetoTrace(TNC, Line, Len);
|
||||||
STREAM->bytesRXed += Len;
|
STREAM->BytesRXed += Len;
|
||||||
|
|
||||||
TEXT = rest;
|
TEXT = rest;
|
||||||
rest = strlop(TEXT, 10); // FreeData chat ues LF
|
rest = strlop(TEXT, 10); // FreeData chat ues LF
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->bytesRXed, TNC->FreeDataInfo->toSendCount);
|
STREAM->BytesTXed - TNC->FreeDataInfo->toSendCount, STREAM->BytesRXed, TNC->FreeDataInfo->toSendCount);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3110,8 +3159,22 @@ void ProcessTNCJSON(struct TNCINFO * TNC, char * Msg, int Len)
|
||||||
|
|
||||||
if (STREAM->Connected)
|
if (STREAM->Connected)
|
||||||
{
|
{
|
||||||
|
// Create a traffic record
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
|
||||||
|
char logmsg[120];
|
||||||
|
time_t Duration;
|
||||||
|
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1;
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
|
|
||||||
STREAM->Connected = FALSE; // Back to Command Mode
|
STREAM->Connected = FALSE; // Back to Command Mode
|
||||||
STREAM->ReportDISC = TRUE; // Tell Node
|
STREAM->ReportDISC = TRUE; // Tell Node
|
||||||
|
@ -3152,7 +3215,7 @@ void ProcessTNCJSON(struct TNCINFO * TNC, char * Msg, int Len)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (memcmp(ptr, "close", 5) == 0)
|
else if (memcmp(ptr, "close", 12) == 0)
|
||||||
{
|
{
|
||||||
if (TNC->FreeDataInfo->arqstate != 4)
|
if (TNC->FreeDataInfo->arqstate != 4)
|
||||||
{
|
{
|
||||||
|
@ -3289,7 +3352,20 @@ void ProcessTNCJSON(struct TNCINFO * TNC, char * Msg, int Len)
|
||||||
{
|
{
|
||||||
// Create a traffic record
|
// Create a traffic record
|
||||||
|
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
char logmsg[120];
|
||||||
|
time_t Duration;
|
||||||
|
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1;
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
|
|
||||||
STREAM->Connected = FALSE; // Back to Command Mode
|
STREAM->Connected = FALSE; // Back to Command Mode
|
||||||
STREAM->ReportDISC = TRUE; // Tell Node
|
STREAM->ReportDISC = TRUE; // Tell Node
|
||||||
|
@ -3647,7 +3723,7 @@ int FreeDataDisconnect(struct TNCINFO * TNC)
|
||||||
|
|
||||||
// return FreeDataSendCommand(TNC, "D");
|
// return FreeDataSendCommand(TNC, "D");
|
||||||
|
|
||||||
Len = sprintf(Msg, "%s", Disconnect);
|
Len = sprintf(Msg, Disconnect);
|
||||||
|
|
||||||
return send(TNC->TCPDataSock, Msg, Len, 0);
|
return send(TNC->TCPDataSock, Msg, Len, 0);
|
||||||
}
|
}
|
||||||
|
@ -3659,7 +3735,7 @@ int FreeGetData(struct TNCINFO * TNC)
|
||||||
char Msg[128];
|
char Msg[128];
|
||||||
int Len;
|
int Len;
|
||||||
|
|
||||||
Len = sprintf(Msg, "%s", GetData);
|
Len = sprintf(Msg, GetData);
|
||||||
|
|
||||||
return send(TNC->TCPDataSock, Msg, Len, 0);
|
return send(TNC->TCPDataSock, Msg, Len, 0);
|
||||||
}
|
}
|
||||||
|
|
20
HALDriver.c
20
HALDriver.c
|
@ -471,7 +471,7 @@ VOID * HALExtInit(EXTPORTDATA * PortEntry)
|
||||||
int port;
|
int port;
|
||||||
char * ptr;
|
char * ptr;
|
||||||
int len;
|
int len;
|
||||||
char Msg[512];
|
char Msg[80];
|
||||||
#ifndef LINBPQ
|
#ifndef LINBPQ
|
||||||
HWND x;
|
HWND x;
|
||||||
#endif
|
#endif
|
||||||
|
@ -548,7 +548,7 @@ VOID * HALExtInit(EXTPORTDATA * PortEntry)
|
||||||
TNC->WebWinX = 510;
|
TNC->WebWinX = 510;
|
||||||
TNC->WebWinY = 280;
|
TNC->WebWinY = 280;
|
||||||
|
|
||||||
TNC->WEB_COMMSSTATE = zalloc(512);
|
TNC->WEB_COMMSSTATE = zalloc(100);
|
||||||
TNC->WEB_TNCSTATE = zalloc(100);
|
TNC->WEB_TNCSTATE = zalloc(100);
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
strcpy(TNC->WEB_TNCSTATE, "Free");
|
||||||
TNC->WEB_MODE = zalloc(100);
|
TNC->WEB_MODE = zalloc(100);
|
||||||
|
@ -749,7 +749,7 @@ VOID HALPoll(int Port)
|
||||||
|
|
||||||
STREAM->Attached = TRUE;
|
STREAM->Attached = TRUE;
|
||||||
|
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->BytesAcked = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->BytesAcked = 0;
|
||||||
|
|
||||||
calllen = ConvFromAX25(TNC->PortRecord->ATTACHEDSESSIONS[0]->L4USER, STREAM->MyCall);
|
calllen = ConvFromAX25(TNC->PortRecord->ATTACHEDSESSIONS[0]->L4USER, STREAM->MyCall);
|
||||||
STREAM->MyCall[calllen] = 0;
|
STREAM->MyCall[calllen] = 0;
|
||||||
|
@ -829,7 +829,7 @@ VOID HALPoll(int Port)
|
||||||
|
|
||||||
//for (Stream = 0; Stream <= MaxStreams; Stream++)
|
//for (Stream = 0; Stream <= MaxStreams; Stream++)
|
||||||
{
|
{
|
||||||
if (TNC->TNCOK && STREAM->BPQtoPACTOR_Q && (STREAM->bytesTXed - STREAM->BytesAcked < 600))
|
if (TNC->TNCOK && STREAM->BPQtoPACTOR_Q && (STREAM->BytesTXed - STREAM->BytesAcked < 600))
|
||||||
{
|
{
|
||||||
int datalen;
|
int datalen;
|
||||||
PMSGWITHLEN buffptr;
|
PMSGWITHLEN buffptr;
|
||||||
|
@ -872,7 +872,7 @@ VOID HALPoll(int Port)
|
||||||
ReleaseBuffer(buffptr);
|
ReleaseBuffer(buffptr);
|
||||||
WriteLogLine(2, MsgPtr, datalen);
|
WriteLogLine(2, MsgPtr, datalen);
|
||||||
|
|
||||||
STREAM->bytesTXed += datalen;
|
STREAM->BytesTXed += datalen;
|
||||||
STREAM->FramesQueued--;
|
STREAM->FramesQueued--;
|
||||||
|
|
||||||
ShowTraffic(TNC);
|
ShowTraffic(TNC);
|
||||||
|
@ -1090,10 +1090,10 @@ VOID ProcessHALData(struct TNCINFO * TNC)
|
||||||
STREAM->BytesAcked += Len;
|
STREAM->BytesAcked += Len;
|
||||||
// Debugprintf("Acked %d", Len);
|
// Debugprintf("Acked %d", Len);
|
||||||
|
|
||||||
if (STREAM->BytesAcked > STREAM->bytesTXed)
|
if (STREAM->BytesAcked > STREAM->BytesTXed)
|
||||||
Debugprintf("Too Much Acked");
|
Debugprintf("Too Much Acked");
|
||||||
|
|
||||||
if ((STREAM->BPQtoPACTOR_Q == 0) && STREAM->BytesAcked >= STREAM->bytesTXed)
|
if ((STREAM->BPQtoPACTOR_Q == 0) && STREAM->BytesAcked >= STREAM->BytesTXed)
|
||||||
{
|
{
|
||||||
// All sent
|
// All sent
|
||||||
|
|
||||||
|
@ -1121,7 +1121,7 @@ VOID ProcessHALData(struct TNCINFO * TNC)
|
||||||
|
|
||||||
WriteLogLine(1, TNC->DataBuffer, Len);
|
WriteLogLine(1, TNC->DataBuffer, Len);
|
||||||
|
|
||||||
STREAM->bytesRXed += Len;
|
STREAM->BytesRXed += Len;
|
||||||
|
|
||||||
memcpy(buffptr->Data, TNC->DataBuffer, Len);
|
memcpy(buffptr->Data, TNC->DataBuffer, Len);
|
||||||
|
|
||||||
|
@ -1756,7 +1756,7 @@ BOOL HALConnected(struct TNCINFO * TNC, char * Call)
|
||||||
strcpy(CallCopy, Call);
|
strcpy(CallCopy, Call);
|
||||||
strcat(CallCopy, " "); // Some routines expect 10 char calls
|
strcat(CallCopy, " "); // Some routines expect 10 char calls
|
||||||
|
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->BytesAcked = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->BytesAcked = 0;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
|
|
||||||
// Stop Scanner
|
// Stop Scanner
|
||||||
|
@ -1804,7 +1804,7 @@ BOOL HALConnected(struct TNCINFO * TNC, char * Call)
|
||||||
EncodeAndSend(TNC, CTEXTMSG, CTEXTLEN);
|
EncodeAndSend(TNC, CTEXTMSG, CTEXTLEN);
|
||||||
WriteLogLine(2, CTEXTMSG, CTEXTLEN);
|
WriteLogLine(2, CTEXTMSG, CTEXTLEN);
|
||||||
|
|
||||||
STREAM->bytesTXed += CTEXTLEN;
|
STREAM->BytesTXed += CTEXTLEN;
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1602,7 +1602,7 @@ VOID ShowTraffic(struct TNCINFO * TNC)
|
||||||
char Status[80];
|
char Status[80];
|
||||||
|
|
||||||
sprintf(Status, "RX %d TX %d ACKED %d ",
|
sprintf(Status, "RX %d TX %d ACKED %d ",
|
||||||
TNC->Streams[0].bytesRXed, TNC->Streams[0].bytesTXed, TNC->Streams[0].BytesAcked);
|
TNC->Streams[0].BytesRXed, TNC->Streams[0].BytesTXed, TNC->Streams[0].BytesAcked);
|
||||||
#ifndef LINBPQ
|
#ifndef LINBPQ
|
||||||
SetDlgItemText(TNC->hDlg, IDC_TRAFFIC, Status);
|
SetDlgItemText(TNC->hDlg, IDC_TRAFFIC, Status);
|
||||||
#endif
|
#endif
|
||||||
|
|
41
HSMODEM.c
41
HSMODEM.c
|
@ -309,10 +309,47 @@ loop:
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL HSMODEMReadConfigFile(int Port, int ProcLine())
|
||||||
|
{
|
||||||
|
char buf[256],errbuf[256];
|
||||||
|
|
||||||
|
Config = PortConfig[Port];
|
||||||
|
|
||||||
|
if (Config)
|
||||||
|
{
|
||||||
|
// Using config from bpq32.cfg
|
||||||
|
|
||||||
|
if (strlen(Config) == 0)
|
||||||
|
{
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
ptr1 = Config;
|
||||||
|
ptr2 = strchr(ptr1, 13);
|
||||||
|
|
||||||
|
if (!ProcLine(buf, Port))
|
||||||
|
{
|
||||||
|
WritetoConsoleLocal("\n");
|
||||||
|
WritetoConsoleLocal("Bad config record ");
|
||||||
|
WritetoConsoleLocal(errbuf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sprintf(buf," ** Error - No Configuration info in bpq32.cfg");
|
||||||
|
WritetoConsoleLocal(buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
VOID SuspendOtherPorts(struct TNCINFO * ThisTNC);
|
VOID SuspendOtherPorts(struct TNCINFO * ThisTNC);
|
||||||
VOID ReleaseOtherPorts(struct TNCINFO * ThisTNC);
|
VOID ReleaseOtherPorts(struct TNCINFO * ThisTNC);
|
||||||
VOID WritetoTrace(struct TNCINFO * TNC, char * Msg, int Len);
|
VOID WritetoTrace(struct TNCINFO * TNC, char * Msg, int Len);
|
||||||
|
|
||||||
|
|
||||||
static time_t ltime;
|
static time_t ltime;
|
||||||
|
|
||||||
|
|
||||||
|
@ -552,7 +589,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
UCHAR * data = &buffptr->Data[0];
|
UCHAR * data = &buffptr->Data[0];
|
||||||
STREAM->FramesQueued--;
|
STREAM->FramesQueued--;
|
||||||
txlen = (int)buffptr->Len;
|
txlen = (int)buffptr->Len;
|
||||||
STREAM->bytesTXed += txlen;
|
STREAM->BytesTXed += txlen;
|
||||||
|
|
||||||
bytes=HSMODEMSendData(TNC, data, txlen);
|
bytes=HSMODEMSendData(TNC, data, txlen);
|
||||||
WritetoTrace(TNC, data, txlen);
|
WritetoTrace(TNC, data, txlen);
|
||||||
|
@ -631,7 +668,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
|
|
||||||
bytes=HSMODEMSendData(TNC, TXMsg, txlen);
|
bytes=HSMODEMSendData(TNC, TXMsg, txlen);
|
||||||
TNC->Streams[Stream].BytesOutstanding += bytes; // So flow control works - will be updated by BUFFER response
|
TNC->Streams[Stream].BytesOutstanding += bytes; // So flow control works - will be updated by BUFFER response
|
||||||
STREAM->bytesTXed += bytes;
|
STREAM->BytesTXed += bytes;
|
||||||
// WritetoTrace(TNC, &buff->L2DATA[0], txlen);
|
// WritetoTrace(TNC, &buff->L2DATA[0], txlen);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
|
318
HTTPcode.c
318
HTTPcode.c
|
@ -38,7 +38,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
#define ZEXPORT __stdcall
|
#define ZEXPORT __stdcall
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <zlib.h>
|
#include "zlib.h"
|
||||||
|
|
||||||
#define CKernel
|
#define CKernel
|
||||||
#include "httpconnectioninfo.h"
|
#include "httpconnectioninfo.h"
|
||||||
|
@ -102,16 +102,16 @@ extern int NumberofPorts;
|
||||||
|
|
||||||
extern UCHAR ConfigDirectory[260];
|
extern UCHAR ConfigDirectory[260];
|
||||||
|
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
VOID sendandcheck(SOCKET sock, const char * Buffer, int Len);
|
VOID sendandcheck(SOCKET sock, const char * Buffer, int Len);
|
||||||
int CompareNode(const void *a, const void *b);
|
int CompareNode(const void *a, const void *b);
|
||||||
int CompareAlias(const void *a, const void *b);
|
int CompareAlias(const void *a, const void *b);
|
||||||
void ProcessMailHTTPMessage(struct HTTPConnectionInfo * Session, char * Method, char * URL, char * input, char * Reply, int * RLen, int InputLen, char * Token);
|
void ProcessMailHTTPMessage(struct HTTPConnectionInfo * Session, char * Method, char * URL, char * input, char * Reply, int * RLen, int InputLen);
|
||||||
void ProcessChatHTTPMessage(struct HTTPConnectionInfo * Session, char * Method, char * URL, char * input, char * Reply, int * RLen);
|
void ProcessChatHTTPMessage(struct HTTPConnectionInfo * Session, char * Method, char * URL, char * input, char * Reply, int * RLen);
|
||||||
struct PORTCONTROL * APIENTRY GetPortTableEntryFromSlot(int portslot);
|
struct PORTCONTROL * APIENTRY GetPortTableEntryFromSlot(int portslot);
|
||||||
int SetupNodeMenu(char * Buff, int SYSOP);
|
int SetupNodeMenu(char * Buff, int SYSOP);
|
||||||
int StatusProc(char * Buff);
|
int StatusProc(char * Buff);
|
||||||
int ProcessMailSignon(struct TCPINFO * TCP, char * MsgPtr, char * Appl, char * Reply, struct HTTPConnectionInfo ** Session, BOOL WebMail, int LOCAL);
|
int ProcessMailSignon(struct TCPINFO * TCP, char * MsgPtr, char * Appl, char * Reply, struct HTTPConnectionInfo ** Session, BOOL WebMail, int LOCAL);
|
||||||
int ProcessMailAPISignon(struct TCPINFO * TCP, char * MsgPtr, char * Appl, char * Reply, struct HTTPConnectionInfo ** Session, BOOL WebMail, int LOCAL);
|
|
||||||
int ProcessChatSignon(struct TCPINFO * TCP, char * MsgPtr, char * Appl, char * Reply, struct HTTPConnectionInfo ** Session, int LOCAL);
|
int ProcessChatSignon(struct TCPINFO * TCP, char * MsgPtr, char * Appl, char * Reply, struct HTTPConnectionInfo ** Session, int LOCAL);
|
||||||
VOID APRSProcessHTTPMessage(SOCKET sock, char * MsgPtr, BOOL LOCAL, BOOL COOKIE);
|
VOID APRSProcessHTTPMessage(SOCKET sock, char * MsgPtr, BOOL LOCAL, BOOL COOKIE);
|
||||||
|
|
||||||
|
@ -1166,9 +1166,6 @@ int SendMessageFile(SOCKET sock, char * FN, BOOL OnlyifExists, int allowDeflate)
|
||||||
|
|
||||||
if (_stricmp(ptr, "js") == 0)
|
if (_stricmp(ptr, "js") == 0)
|
||||||
strcpy(Type, "Content-Type: text/javascript\r\n");
|
strcpy(Type, "Content-Type: text/javascript\r\n");
|
||||||
|
|
||||||
if (_stricmp(ptr, "css") == 0)
|
|
||||||
strcpy(Type, "Content-Type: text/css\r\n");
|
|
||||||
|
|
||||||
if (_stricmp(ptr, "pdf") == 0)
|
if (_stricmp(ptr, "pdf") == 0)
|
||||||
strcpy(Type, "Content-Type: application/pdf\r\n");
|
strcpy(Type, "Content-Type: application/pdf\r\n");
|
||||||
|
@ -1183,8 +1180,7 @@ int SendMessageFile(SOCKET sock, char * FN, BOOL OnlyifExists, int allowDeflate)
|
||||||
Compressed = MsgBytes;
|
Compressed = MsgBytes;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_stricmp(ptr, "jpg") == 0 || _stricmp(ptr, "jpeg") == 0 || _stricmp(ptr, "png") == 0 ||
|
if (_stricmp(ptr, "jpg") == 0 || _stricmp(ptr, "jpeg") == 0 || _stricmp(ptr, "png") == 0 || _stricmp(ptr, "gif") == 0 || _stricmp(ptr, "ico") == 0)
|
||||||
_stricmp(ptr, "gif") == 0 || _stricmp(ptr, "bmp") == 0 || _stricmp(ptr, "ico") == 0)
|
|
||||||
strcpy(Type, "Content-Type: image\r\n");
|
strcpy(Type, "Content-Type: image\r\n");
|
||||||
|
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\nContent-Length: %d\r\n"
|
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\nContent-Length: %d\r\n"
|
||||||
|
@ -1627,23 +1623,23 @@ int InnerProcessHTTPMessage(struct ConnectionInfo * conn)
|
||||||
char * WebSock = 0;
|
char * WebSock = 0;
|
||||||
|
|
||||||
char PortsHddr[] = "<h2 align=center>Ports</h2><table align=center border=2 bgcolor=white>"
|
char PortsHddr[] = "<h2 align=center>Ports</h2><table align=center border=2 bgcolor=white>"
|
||||||
"<tr><th>Port</th><th>Driver</th><th>ID</th><th>Beacons</th><th>Driver Window</th><th>Stats Graph</th></tr>";
|
"<tr><th>Port</th><th>Driver</th><th>ID</th><th>Beacons</th><th>Driver Window</th></tr>";
|
||||||
|
|
||||||
// char PortLine[] = "<tr><td>%d</td><td><a href=PortStats?%d&%s> %s</a></td><td>%s</td></tr>";
|
char PortLine[] = "<tr><td>%d</td><td><a href=PortStats?%d&%s> %s</a></td><td>%s</td></tr>";
|
||||||
|
|
||||||
char PortLineWithBeacon[] = "<tr><td>%d</td><td><a href=PortStats?%d&%s> %s</a></td><td>%s</td>"
|
char PortLineWithBeacon[] = "<tr><td>%d</td><td><a href=PortStats?%d&%s> %s</a></td><td>%s</td>"
|
||||||
"<td><a href=PortBeacons?%d> Beacons</a><td> </td></td><td>%s</td></tr>\r\n";
|
"<td><a href=PortBeacons?%d> Beacons</a><td> </td></td></tr>\r\n";
|
||||||
|
|
||||||
char SessionPortLine[] = "<tr><td>%d</td><td>%s</td><td>%s</td><td> </td>"
|
char SessionPortLine[] = "<tr><td>%d</td><td>%s</td><td>%s</td><td> </td>"
|
||||||
"<td> </td><td>%s</td></tr>\r\n";
|
"<td> </td></tr>\r\n";
|
||||||
|
|
||||||
char PortLineWithDriver[] = "<tr><td>%d</td><td>%s</td><td>%s</td><td> </td>"
|
char PortLineWithDriver[] = "<tr><td>%d</td><td>%s</td><td>%s</td><td> </td>"
|
||||||
"<td><a href=\"javascript:dev_win('/Node/Port?%d',%d,%d,%d,%d);\">Driver Window</a></td><td>%s</td></tr>\r\n";
|
"<td><a href=\"javascript:dev_win('/Node/Port?%d',%d,%d,%d,%d);\">Driver Window</a></td></tr>\r\n";
|
||||||
|
|
||||||
|
|
||||||
char PortLineWithBeaconAndDriver[] = "<tr><td>%d</td><td>%s</td><td>%s</td>"
|
char PortLineWithBeaconAndDriver[] = "<tr><td>%d</td><td>%s</td><td>%s</td>"
|
||||||
"<td><a href=PortBeacons?%d> Beacons</a></td>"
|
"<td><a href=PortBeacons?%d> Beacons</a></td>"
|
||||||
"<td><a href=\"javascript:dev_win('/Node/Port?%d',%d,%d,%d,%d);\">Driver Window</a></td><td>%s</td></tr>\r\n";
|
"<td><a href=\"javascript:dev_win('/Node/Port?%d',%d,%d,%d,%d);\">Driver Window</a></td></tr>\r\n";
|
||||||
|
|
||||||
char RigControlLine[] = "<tr><td>%d</td><td>%s</td><td>%s</td><td> </td>"
|
char RigControlLine[] = "<tr><td>%d</td><td>%s</td><td>%s</td><td> </td>"
|
||||||
"<td><a href=\"javascript:dev_win('/Node/RigControl.html',%d,%d,%d,%d);\">Rig Control</a></td></tr>\r\n";
|
"<td><a href=\"javascript:dev_win('/Node/RigControl.html',%d,%d,%d,%d);\">Rig Control</a></td></tr>\r\n";
|
||||||
|
@ -1797,61 +1793,38 @@ int InnerProcessHTTPMessage(struct ConnectionInfo * conn)
|
||||||
if (_memicmp(Context, "/api/", 5) == 0 || _stricmp(Context, "/api") == 0)
|
if (_memicmp(Context, "/api/", 5) == 0 || _stricmp(Context, "/api") == 0)
|
||||||
{
|
{
|
||||||
char * Compressed;
|
char * Compressed;
|
||||||
|
ReplyLen = APIProcessHTTPMessage(_REPLYBUFFER, Method, Context, MsgPtr, LOCAL, COOKIE);
|
||||||
// if for mail api process signon here and rearrange url from
|
|
||||||
// api/v1/mail to mail/api/v1 so it goes to mail handler later
|
|
||||||
|
|
||||||
if (_memicmp(Context, "/api/v1/mail/", 13) == 0)
|
|
||||||
{
|
|
||||||
memcpy(MsgPtr, "GET /mail/api/v1/", 17);
|
|
||||||
|
|
||||||
if (memcmp(&Context[13], "login", 5) == 0)
|
|
||||||
{
|
|
||||||
ReplyLen = ProcessMailAPISignon(TCP, MsgPtr, "M", Reply, &Session, FALSE, LOCAL);
|
|
||||||
memcpy(MsgPtr, "GET /mail/api/v1/", 17);
|
|
||||||
|
|
||||||
if (ReplyLen) // Error message
|
|
||||||
goto Returnit;
|
|
||||||
}
|
|
||||||
|
|
||||||
memcpy(Context, "/mail/api/v1/", 13);
|
|
||||||
goto doHeader;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ReplyLen = APIProcessHTTPMessage(_REPLYBUFFER, Method, Context, MsgPtr, LOCAL, COOKIE);
|
|
||||||
|
|
||||||
if (memcmp(_REPLYBUFFER, "HTTP", 4) == 0)
|
if (memcmp(_REPLYBUFFER, "HTTP", 4) == 0)
|
||||||
{
|
{
|
||||||
// Full Message - just send it
|
// Full Message - just send it
|
||||||
|
|
||||||
sendandcheck(sock, _REPLYBUFFER, ReplyLen);
|
sendandcheck(sock, _REPLYBUFFER, ReplyLen);
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (allowDeflate)
|
|
||||||
Compressed = Compressit(_REPLYBUFFER, ReplyLen, &ReplyLen);
|
|
||||||
else
|
|
||||||
Compressed = _REPLYBUFFER;
|
|
||||||
|
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\n"
|
|
||||||
"Content-Length: %d\r\n"
|
|
||||||
"Content-Type: application/json\r\n"
|
|
||||||
"Connection: close\r\n"
|
|
||||||
"Access-Control-Allow-Origin: *\r\n"
|
|
||||||
"%s\r\n", ReplyLen, Encoding);
|
|
||||||
|
|
||||||
sendandcheck(sock, Header, HeaderLen);
|
|
||||||
sendandcheck(sock, Compressed, ReplyLen);
|
|
||||||
|
|
||||||
if (allowDeflate)
|
|
||||||
free (Compressed);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (allowDeflate)
|
||||||
|
Compressed = Compressit(_REPLYBUFFER, ReplyLen, &ReplyLen);
|
||||||
|
else
|
||||||
|
Compressed = _REPLYBUFFER;
|
||||||
|
|
||||||
|
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\n"
|
||||||
|
"Content-Length: %d\r\n"
|
||||||
|
"Content-Type: application/json\r\n"
|
||||||
|
"Connection: close\r\n"
|
||||||
|
"%s\r\n", ReplyLen, Encoding);
|
||||||
|
|
||||||
|
sendandcheck(sock, Header, HeaderLen);
|
||||||
|
sendandcheck(sock, Compressed, ReplyLen);
|
||||||
|
|
||||||
|
if (allowDeflate)
|
||||||
|
free (Compressed);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// APRS process internally
|
// APRS process internally
|
||||||
|
|
||||||
if (_memicmp(Context, "/APRS/", 6) == 0 || _stricmp(Context, "/APRS") == 0)
|
if (_memicmp(Context, "/APRS/", 6) == 0 || _stricmp(Context, "/APRS") == 0)
|
||||||
|
@ -2122,7 +2095,11 @@ Returnit:
|
||||||
Compressed = Reply;
|
Compressed = Reply;
|
||||||
|
|
||||||
if (NodeURL && _memicmp(NodeURL, "/mail/api/", 10) == 0)
|
if (NodeURL && _memicmp(NodeURL, "/mail/api/", 10) == 0)
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\nContent-Length: %d\r\nContent-Type: application/json\r\nConnection: close\r\n%s\r\n", ReplyLen, Encoding);
|
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\n"
|
||||||
|
"Content-Length: %d\r\n"
|
||||||
|
"Content-Type: application/json\r\n"
|
||||||
|
"Connection: close\r\n"
|
||||||
|
"%s\r\n", ReplyLen, Encoding);
|
||||||
else
|
else
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\nContent-Length: %d\r\nContent-Type: text/html\r\n%s\r\n", ReplyLen, Encoding);
|
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\nContent-Length: %d\r\nContent-Type: text/html\r\n%s\r\n", ReplyLen, Encoding);
|
||||||
|
|
||||||
|
@ -2145,82 +2122,15 @@ doHeader:
|
||||||
char _REPLYBUFFER[250000];
|
char _REPLYBUFFER[250000];
|
||||||
struct HTTPConnectionInfo Dummy = {0};
|
struct HTTPConnectionInfo Dummy = {0};
|
||||||
int Sent, Loops = 0;
|
int Sent, Loops = 0;
|
||||||
char token[16] = "";
|
|
||||||
|
|
||||||
// look for auth header
|
|
||||||
|
|
||||||
const char * auth_header = "Authorization: Bearer ";
|
|
||||||
char * token_begin = strstr(MsgPtr, auth_header);
|
|
||||||
int Flags = 0, n;
|
|
||||||
|
|
||||||
char * Tok;
|
|
||||||
char * param;
|
|
||||||
|
|
||||||
if (token_begin)
|
|
||||||
{
|
|
||||||
// Using Auth Header
|
|
||||||
|
|
||||||
// Extract the token from the request (assuming it's present in the request headers)
|
|
||||||
|
|
||||||
token_begin += strlen(auth_header); // Move to the beginning of the token
|
|
||||||
strncpy(token, token_begin, 13);
|
|
||||||
token[13] = '\0'; // Null-terminate the token
|
|
||||||
}
|
|
||||||
|
|
||||||
ReplyLen = 0;
|
ReplyLen = 0;
|
||||||
|
|
||||||
if (Session == 0)
|
if (Session == 0)
|
||||||
Session = &Dummy;
|
Session = &Dummy;
|
||||||
|
|
||||||
if (LOCAL)
|
Session->TNC = (void *)LOCAL; // TNC only used for Web Terminal Sessions
|
||||||
Session->TNC = (void *)1; // TNC only used for Web Terminal Sessions
|
|
||||||
else
|
|
||||||
Session->TNC = (void *)0;
|
|
||||||
|
|
||||||
ProcessMailHTTPMessage(Session, Method, Context, MsgPtr, _REPLYBUFFER, &ReplyLen, MsgLen, token);
|
ProcessMailHTTPMessage(Session, Method, Context, MsgPtr, _REPLYBUFFER, &ReplyLen, MsgLen);
|
||||||
|
|
||||||
if (Context && _memicmp(Context, "/mail/api/", 10) == 0)
|
|
||||||
{
|
|
||||||
if (memcmp(_REPLYBUFFER, "HTTP", 4) == 0)
|
|
||||||
{
|
|
||||||
// Full Header provided by appl - just send it
|
|
||||||
|
|
||||||
// Send may block
|
|
||||||
|
|
||||||
Sent = send(sock, _REPLYBUFFER, ReplyLen, 0);
|
|
||||||
|
|
||||||
while (Sent != ReplyLen && Loops++ < 3000) // 100 secs max
|
|
||||||
{
|
|
||||||
// Debugprintf("%d out of %d sent %d Loops", Sent, InputLen, Loops);
|
|
||||||
|
|
||||||
if (Sent > 0) // something sent
|
|
||||||
{
|
|
||||||
InputLen -= Sent;
|
|
||||||
memmove(_REPLYBUFFER, &_REPLYBUFFER[Sent], ReplyLen);
|
|
||||||
}
|
|
||||||
|
|
||||||
Sleep(30);
|
|
||||||
Sent = send(sock, _REPLYBUFFER, ReplyLen, 0);
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// compress if allowed
|
|
||||||
|
|
||||||
if (allowDeflate)
|
|
||||||
Compressed = Compressit(_REPLYBUFFER, ReplyLen, &ReplyLen);
|
|
||||||
else
|
|
||||||
Compressed = _REPLYBUFFER;
|
|
||||||
|
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\nContent-Length: %d\r\nContent-Type: application/json\r\nConnection: close\r\n%s\r\n", ReplyLen, Encoding);
|
|
||||||
sendandcheck(sock, Header, HeaderLen);
|
|
||||||
sendandcheck(sock, Compressed, ReplyLen);
|
|
||||||
|
|
||||||
if (allowDeflate)
|
|
||||||
free (Compressed);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (memcmp(_REPLYBUFFER, "HTTP", 4) == 0)
|
if (memcmp(_REPLYBUFFER, "HTTP", 4) == 0)
|
||||||
{
|
{
|
||||||
|
@ -2246,16 +2156,11 @@ doHeader:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Context && _memicmp(Context, "/mail/api/", 10) != 0)
|
|
||||||
{
|
|
||||||
|
|
||||||
// Add tail
|
// Add tail
|
||||||
|
|
||||||
strcpy(&_REPLYBUFFER[ReplyLen], Tail);
|
strcpy(&_REPLYBUFFER[ReplyLen], Tail);
|
||||||
ReplyLen += strlen(Tail);
|
ReplyLen += strlen(Tail);
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// compress if allowed
|
// compress if allowed
|
||||||
|
|
||||||
if (allowDeflate)
|
if (allowDeflate)
|
||||||
|
@ -2345,8 +2250,6 @@ doHeader:
|
||||||
|
|
||||||
// Pass to MailChat if active
|
// Pass to MailChat if active
|
||||||
|
|
||||||
NodeURL = Context;
|
|
||||||
|
|
||||||
if ((_memicmp(Context, "/MAIL/", 6) == 0) || (_memicmp(Context, "/WebMail", 8) == 0))
|
if ((_memicmp(Context, "/MAIL/", 6) == 0) || (_memicmp(Context, "/WebMail", 8) == 0))
|
||||||
{
|
{
|
||||||
// If for Mail, Pass to Mail Server via Named Pipe
|
// If for Mail, Pass to Mail Server via Named Pipe
|
||||||
|
@ -2804,53 +2707,6 @@ doHeader:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (_memicmp(NodeURL, "/portstats.txt", 15) == 0)
|
|
||||||
{
|
|
||||||
char * Compressed;
|
|
||||||
char * ptr;
|
|
||||||
int port;
|
|
||||||
struct PORTCONTROL * PORT;
|
|
||||||
|
|
||||||
ptr = &NodeURL[15];
|
|
||||||
|
|
||||||
port = atoi(ptr);
|
|
||||||
|
|
||||||
PORT = GetPortTableEntryFromPortNum(port);
|
|
||||||
|
|
||||||
ReplyLen = 0;
|
|
||||||
|
|
||||||
if (PORT && PORT->TX)
|
|
||||||
{
|
|
||||||
// We send the last 24 hours worth of data. Buffer is cyclic so oldest byte is at StatsPointer
|
|
||||||
|
|
||||||
int first = PORT->StatsPointer;
|
|
||||||
int firstlen = 1440 - first;
|
|
||||||
|
|
||||||
memcpy(&_REPLYBUFFER[0], &PORT->TX[first], firstlen);
|
|
||||||
memcpy(&_REPLYBUFFER[firstlen], PORT->TX, first);
|
|
||||||
|
|
||||||
memcpy(&_REPLYBUFFER[1440], &PORT->BUSY[first], firstlen);
|
|
||||||
memcpy(&_REPLYBUFFER[1440 + firstlen], PORT->BUSY, first);
|
|
||||||
|
|
||||||
ReplyLen = 2880;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (allowDeflate)
|
|
||||||
Compressed = Compressit(_REPLYBUFFER, ReplyLen, &ReplyLen);
|
|
||||||
else
|
|
||||||
Compressed = _REPLYBUFFER;
|
|
||||||
|
|
||||||
HeaderLen = sprintf(Header, "HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Length: %d\r\nContent-Type: Text\r\n%s\r\n", ReplyLen, Encoding);
|
|
||||||
sendandcheck(sock, Header, HeaderLen);
|
|
||||||
sendandcheck(sock, Compressed, ReplyLen);
|
|
||||||
|
|
||||||
if (allowDeflate)
|
|
||||||
free (Compressed);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
else if (_memicmp(NodeURL, "/Icon", 5) == 0 && _memicmp(&NodeURL[10], ".png", 4) == 0)
|
else if (_memicmp(NodeURL, "/Icon", 5) == 0 && _memicmp(&NodeURL[10], ".png", 4) == 0)
|
||||||
{
|
{
|
||||||
// APRS internal Icon
|
// APRS internal Icon
|
||||||
|
@ -3024,7 +2880,7 @@ doHeader:
|
||||||
" {"
|
" {"
|
||||||
" // The browser doesn't support WebSocket\r\n"
|
" // The browser doesn't support WebSocket\r\n"
|
||||||
" const div = document.getElementById('div');\r\n"
|
" const div = document.getElementById('div');\r\n"
|
||||||
" div.innerHTML = 'WebSocket not supported by your Browser - RigControl Page not availible'\r\n"
|
" div.innerHTML = 'WebSocket not supported by your Browser - RigControl Page not availble'\r\n"
|
||||||
" }"
|
" }"
|
||||||
"}"
|
"}"
|
||||||
"function PTT(p)"
|
"function PTT(p)"
|
||||||
|
@ -3379,7 +3235,6 @@ doHeader:
|
||||||
|
|
||||||
int count;
|
int count;
|
||||||
char DLL[20];
|
char DLL[20];
|
||||||
char StatsURL[64];
|
|
||||||
|
|
||||||
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], "%s", PortsHddr);
|
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], "%s", PortsHddr);
|
||||||
|
|
||||||
|
@ -3388,13 +3243,6 @@ doHeader:
|
||||||
Port = GetPortTableEntryFromSlot(count);
|
Port = GetPortTableEntryFromSlot(count);
|
||||||
ExtPort = (struct _EXTPORTDATA *)Port;
|
ExtPort = (struct _EXTPORTDATA *)Port;
|
||||||
|
|
||||||
// see if has a stats page
|
|
||||||
|
|
||||||
if (Port->AVACTIVE)
|
|
||||||
sprintf(StatsURL, "<a href=/PortStats.html?%d> Stats Graph</a>", Port->PORTNUMBER);
|
|
||||||
else
|
|
||||||
StatsURL[0] = 0;
|
|
||||||
|
|
||||||
if (Port->PORTTYPE == 0x10)
|
if (Port->PORTTYPE == 0x10)
|
||||||
{
|
{
|
||||||
strcpy(DLL, ExtPort->PORT_DLL_NAME);
|
strcpy(DLL, ExtPort->PORT_DLL_NAME);
|
||||||
|
@ -3417,20 +3265,20 @@ doHeader:
|
||||||
{
|
{
|
||||||
if (Port->UICAPABLE)
|
if (Port->UICAPABLE)
|
||||||
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], PortLineWithBeaconAndDriver, Port->PORTNUMBER, DLL,
|
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], PortLineWithBeaconAndDriver, Port->PORTNUMBER, DLL,
|
||||||
Port->PORTDESCRIPTION, Port->PORTNUMBER, Port->PORTNUMBER, Port->TNC->WebWinX, Port->TNC->WebWinY, 200, 200, StatsURL);
|
Port->PORTDESCRIPTION, Port->PORTNUMBER, Port->PORTNUMBER, Port->TNC->WebWinX, Port->TNC->WebWinY, 200, 200);
|
||||||
else
|
else
|
||||||
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], PortLineWithDriver, Port->PORTNUMBER, DLL,
|
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], PortLineWithDriver, Port->PORTNUMBER, DLL,
|
||||||
Port->PORTDESCRIPTION, Port->PORTNUMBER, Port->TNC->WebWinX, Port->TNC->WebWinY, 200, 200, StatsURL);
|
Port->PORTDESCRIPTION, Port->PORTNUMBER, Port->TNC->WebWinX, Port->TNC->WebWinY, 200, 200);
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Port->PORTTYPE == 16 && Port->PROTOCOL == 10 && Port->UICAPABLE == 0) // EXTERNAL, Pactor/WINMO
|
if (Port->PORTTYPE == 16 && Port->PROTOCOL == 10 && Port->UICAPABLE == 0) // EXTERNAL, Pactor/WINMO
|
||||||
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], SessionPortLine, Port->PORTNUMBER, DLL,
|
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], SessionPortLine, Port->PORTNUMBER, DLL,
|
||||||
Port->PORTDESCRIPTION, Port->PORTNUMBER, StatsURL);
|
Port->PORTDESCRIPTION, Port->PORTNUMBER);
|
||||||
else
|
else
|
||||||
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], PortLineWithBeacon, Port->PORTNUMBER, Port->PORTNUMBER,
|
ReplyLen += sprintf(&_REPLYBUFFER[ReplyLen], PortLineWithBeacon, Port->PORTNUMBER, Port->PORTNUMBER,
|
||||||
DLL, DLL, Port->PORTDESCRIPTION, Port->PORTNUMBER, StatsURL);
|
DLL, DLL, Port->PORTDESCRIPTION, Port->PORTNUMBER);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (RigActive)
|
if (RigActive)
|
||||||
|
@ -4280,78 +4128,6 @@ int ProcessNodeSignon(SOCKET sock, struct TCPINFO * TCP, char * MsgPtr, char * A
|
||||||
return ReplyLen;
|
return ReplyLen;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ProcessMailAPISignon(struct TCPINFO * TCP, char * MsgPtr, char * Appl, char * Reply, struct HTTPConnectionInfo ** Session, BOOL WebMail, int LOCAL)
|
|
||||||
{
|
|
||||||
int ReplyLen = 0;
|
|
||||||
char * input = strstr(MsgPtr, "\r\n\r\n"); // End of headers
|
|
||||||
char * user, * password, * Key;
|
|
||||||
struct HTTPConnectionInfo * NewSession;
|
|
||||||
int i;
|
|
||||||
struct UserRec * USER;
|
|
||||||
|
|
||||||
if (strchr(MsgPtr, '?'))
|
|
||||||
{
|
|
||||||
// Check Password
|
|
||||||
|
|
||||||
user = strlop(MsgPtr, '?');
|
|
||||||
password = strlop(user, '&');
|
|
||||||
strlop(password, ' ');
|
|
||||||
|
|
||||||
for (i = 0; i < TCP->NumberofUsers; i++)
|
|
||||||
{
|
|
||||||
USER = TCP->UserRecPtr[i];
|
|
||||||
|
|
||||||
if (user && _stricmp(user, USER->UserName) == 0)
|
|
||||||
{
|
|
||||||
if ((strcmp(password, USER->Password) == 0) && (USER->Secure || WebMail))
|
|
||||||
{
|
|
||||||
// ok
|
|
||||||
|
|
||||||
NewSession = AllocateSession(Appl[0], 'M');
|
|
||||||
|
|
||||||
*Session = NewSession;
|
|
||||||
|
|
||||||
if (NewSession)
|
|
||||||
{
|
|
||||||
ReplyLen = 0;
|
|
||||||
strcpy(NewSession->Callsign, USER->Callsign);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ReplyLen = SetupNodeMenu(Reply, LOCAL);
|
|
||||||
ReplyLen += sprintf(&Reply[ReplyLen], "%s", BusyError);
|
|
||||||
}
|
|
||||||
return ReplyLen;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pass failed attempt to BBS code so it can try a bbs user login
|
|
||||||
|
|
||||||
// Need to put url back together
|
|
||||||
|
|
||||||
if (user && user[0] && password && password[0])
|
|
||||||
{
|
|
||||||
sprintf(MsgPtr, "%s?%s&%s", MsgPtr, user, password);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NewSession = AllocateSession(Appl[0], 'M');
|
|
||||||
|
|
||||||
*Session = NewSession;
|
|
||||||
|
|
||||||
if (NewSession)
|
|
||||||
ReplyLen = 0;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ReplyLen = SetupNodeMenu(Reply, LOCAL);
|
|
||||||
ReplyLen += sprintf(&Reply[ReplyLen], "%s", BusyError);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ReplyLen;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1186,7 +1186,7 @@ static BOOL CheckforDups(ChatCIRCUIT * circuit, char * Call, char * Msg)
|
||||||
// Duplicate, so discard, but save time
|
// Duplicate, so discard, but save time
|
||||||
|
|
||||||
DupInfo[i].DupTime = Now;
|
DupInfo[i].DupTime = Now;
|
||||||
Logprintf(LOG_CHAT, circuit, '?', "Duplicate Message From %s %s suppressed", Call, Msg);
|
Logprintf(LOG_CHAT, circuit, '?', "Duplicate Message From %s %s supressed", Call, Msg);
|
||||||
|
|
||||||
return TRUE; // Duplicate
|
return TRUE; // Duplicate
|
||||||
}
|
}
|
||||||
|
|
|
@ -343,12 +343,12 @@ VOID ExpireMessages()
|
||||||
|
|
||||||
Killed = 0;
|
Killed = 0;
|
||||||
|
|
||||||
PRLimit = now - (time_t)PR*86400;
|
PRLimit = now - PR*86400;
|
||||||
PURLimit = now -(time_t)PUR*86400;
|
PURLimit = now - PUR*86400;
|
||||||
PFLimit = now - (time_t)PF*86400;
|
PFLimit = now - PF*86400;
|
||||||
PNFLimit = now - (time_t)PNF*86400;
|
PNFLimit = now - PNF*86400;
|
||||||
BFLimit = now - (time_t)BF*86400;
|
BFLimit = now - BF*86400;
|
||||||
BNFLimit = now -(time_t) BNF*86400;
|
BNFLimit = now - BNF*86400;
|
||||||
|
|
||||||
if (NTSU == 0)
|
if (NTSU == 0)
|
||||||
{
|
{
|
||||||
|
@ -391,7 +391,7 @@ VOID ExpireMessages()
|
||||||
if (Msg->datecreated < PURLimit)
|
if (Msg->datecreated < PURLimit)
|
||||||
{
|
{
|
||||||
if (SendNonDeliveryMsgs)
|
if (SendNonDeliveryMsgs)
|
||||||
SendNonDeliveryMessage(Msg, TRUE, (int)PUR);
|
SendNonDeliveryMessage(Msg, TRUE, PUR);
|
||||||
|
|
||||||
KillMsg(Msg);
|
KillMsg(Msg);
|
||||||
}
|
}
|
||||||
|
@ -401,7 +401,7 @@ VOID ExpireMessages()
|
||||||
if (Msg->datecreated < PNFLimit)
|
if (Msg->datecreated < PNFLimit)
|
||||||
{
|
{
|
||||||
if (SendNonDeliveryMsgs)
|
if (SendNonDeliveryMsgs)
|
||||||
SendNonDeliveryMessage(Msg, FALSE, (int)PNF);
|
SendNonDeliveryMessage(Msg, FALSE, PNF);
|
||||||
|
|
||||||
KillMsg(Msg);
|
KillMsg(Msg);
|
||||||
}
|
}
|
||||||
|
|
16
IPCode.c
16
IPCode.c
|
@ -95,13 +95,9 @@ TODo ?Multiple Adapters
|
||||||
#pragma comment(lib, "IPHLPAPI.lib")
|
#pragma comment(lib, "IPHLPAPI.lib")
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <pcap.h>
|
#include "pcap.h"
|
||||||
|
|
||||||
#ifdef WIN32
|
|
||||||
int pcap_sendpacket(pcap_t *p, u_char *buf, int size);
|
int pcap_sendpacket(pcap_t *p, u_char *buf, int size);
|
||||||
#else
|
|
||||||
PCAP_API int pcap_sendpacket(pcap_t *, const u_char *, int);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef LINBPQ
|
#ifndef LINBPQ
|
||||||
#include "kernelresource.h"
|
#include "kernelresource.h"
|
||||||
|
@ -4735,7 +4731,7 @@ void OpenTAP()
|
||||||
extern struct DATAMESSAGE * REPLYBUFFER;
|
extern struct DATAMESSAGE * REPLYBUFFER;
|
||||||
char * __cdecl Cmdprintf(TRANSPORTENTRY * Session, char * Bufferptr, const char * format, ...);
|
char * __cdecl Cmdprintf(TRANSPORTENTRY * Session, char * Bufferptr, const char * format, ...);
|
||||||
|
|
||||||
VOID PING(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID PING(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// Send ICMP Echo Request
|
// Send ICMP Echo Request
|
||||||
|
|
||||||
|
@ -4793,7 +4789,7 @@ VOID PING(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMD
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SHOWARP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SHOWARP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY IP Gateway ARP status or Clear
|
// DISPLAY IP Gateway ARP status or Clear
|
||||||
|
|
||||||
|
@ -4888,7 +4884,7 @@ VOID SHOWARP(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SHOWNAT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SHOWNAT(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY IP Gateway ARP status or Clear
|
// DISPLAY IP Gateway ARP status or Clear
|
||||||
|
|
||||||
|
@ -4947,7 +4943,7 @@ int CountBits(uint32_t in)
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SHOWIPROUTE(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SHOWIPROUTE(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY IP Gateway ARP status or Clear
|
// DISPLAY IP Gateway ARP status or Clear
|
||||||
|
|
||||||
|
@ -5338,7 +5334,7 @@ int ProcessSNMPPayload(UCHAR * Msg, int Len, UCHAR * Reply, int * OffPtr)
|
||||||
// Should be nothing left
|
// Should be nothing left
|
||||||
}
|
}
|
||||||
|
|
||||||
if (RequestType == 160)
|
if (RequestType = 160)
|
||||||
{
|
{
|
||||||
int Offset = 255;
|
int Offset = 255;
|
||||||
int PDULen = 0;
|
int PDULen = 0;
|
||||||
|
|
22
KAMPactor.c
22
KAMPactor.c
|
@ -1099,7 +1099,7 @@ VOID KAMPoll(int Port)
|
||||||
|
|
||||||
// Limit amount in TX, so we keep some on the TX Q and don't send turnround too early
|
// Limit amount in TX, so we keep some on the TX Q and don't send turnround too early
|
||||||
|
|
||||||
if (TNC->Streams[0].bytesTXed - TNC->Streams[0].BytesAcked > 200)
|
if (TNC->Streams[0].BytesTXed - TNC->Streams[0].BytesAcked > 200)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Dont send if IRS State
|
// Dont send if IRS State
|
||||||
|
@ -1132,7 +1132,7 @@ VOID KAMPoll(int Port)
|
||||||
}
|
}
|
||||||
|
|
||||||
Next = 0;
|
Next = 0;
|
||||||
STREAM->bytesTXed += datalen;
|
STREAM->BytesTXed += datalen;
|
||||||
|
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
{
|
{
|
||||||
|
@ -1157,7 +1157,7 @@ VOID KAMPoll(int Port)
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
{
|
{
|
||||||
sprintf(Status, "RX %d TX %d ACKED %d ",
|
sprintf(Status, "RX %d TX %d ACKED %d ",
|
||||||
TNC->Streams[0].bytesRXed, TNC->Streams[0].bytesTXed, TNC->Streams[0].BytesAcked);
|
TNC->Streams[0].BytesRXed, TNC->Streams[0].BytesTXed, TNC->Streams[0].BytesAcked);
|
||||||
SetWindowText(TNC->xIDC_TRAFFIC, Status);
|
SetWindowText(TNC->xIDC_TRAFFIC, Status);
|
||||||
|
|
||||||
if ((TNC->HFPacket == 0) && (TNC->Streams[0].BPQtoPACTOR_Q == 0)) // Nothing following
|
if ((TNC->HFPacket == 0) && (TNC->Streams[0].BPQtoPACTOR_Q == 0)) // Nothing following
|
||||||
|
@ -1532,14 +1532,14 @@ VOID ProcessKHOSTPacket(struct TNCINFO * TNC, UCHAR * Msg, int Len)
|
||||||
{
|
{
|
||||||
if (Msg[1] == '2') // HF Port
|
if (Msg[1] == '2') // HF Port
|
||||||
{
|
{
|
||||||
if (TNC->Streams[0].bytesTXed)
|
if (TNC->Streams[0].BytesTXed)
|
||||||
TNC->Streams[0].BytesAcked += Len - 3; // We get an ack before the first send
|
TNC->Streams[0].BytesAcked += Len - 3; // We get an ack before the first send
|
||||||
|
|
||||||
sprintf(Status, "RX %d TX %d ACKED %d ",
|
sprintf(Status, "RX %d TX %d ACKED %d ",
|
||||||
TNC->Streams[0].bytesRXed, TNC->Streams[0].bytesTXed, TNC->Streams[0].BytesAcked);
|
TNC->Streams[0].BytesRXed, TNC->Streams[0].BytesTXed, TNC->Streams[0].BytesAcked);
|
||||||
SetWindowText(TNC->xIDC_TRAFFIC, Status);
|
SetWindowText(TNC->xIDC_TRAFFIC, Status);
|
||||||
|
|
||||||
if (TNC->Streams[0].bytesTXed - TNC->Streams[0].BytesAcked < 500)
|
if (TNC->Streams[0].BytesTXed - TNC->Streams[0].BytesAcked < 500)
|
||||||
TNC->Streams[0].FramesOutstanding = 0;
|
TNC->Streams[0].FramesOutstanding = 0;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -1555,7 +1555,7 @@ VOID ProcessKHOSTPacket(struct TNCINFO * TNC, UCHAR * Msg, int Len)
|
||||||
Len-=3; // Remove Header
|
Len-=3; // Remove Header
|
||||||
|
|
||||||
buffptr->Len = Len; // Length
|
buffptr->Len = Len; // Length
|
||||||
STREAM->bytesRXed += Len;
|
STREAM->BytesRXed += Len;
|
||||||
memcpy(buffptr->Data, Buffer, Len);
|
memcpy(buffptr->Data, Buffer, Len);
|
||||||
|
|
||||||
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
||||||
|
@ -1563,7 +1563,7 @@ VOID ProcessKHOSTPacket(struct TNCINFO * TNC, UCHAR * Msg, int Len)
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
{
|
{
|
||||||
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %d ",
|
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %d ",
|
||||||
TNC->Streams[0].bytesRXed, TNC->Streams[0].bytesTXed, TNC->Streams[0].BytesAcked);
|
TNC->Streams[0].BytesRXed, TNC->Streams[0].BytesTXed, TNC->Streams[0].BytesAcked);
|
||||||
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1762,7 +1762,7 @@ VOID ProcessKHOSTPacket(struct TNCINFO * TNC, UCHAR * Msg, int Len)
|
||||||
Buffer[Len-4] = 0;
|
Buffer[Len-4] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->BytesAcked = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->BytesAcked = 0;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
|
|
||||||
if (Stream == 0)
|
if (Stream == 0)
|
||||||
|
@ -1776,7 +1776,7 @@ VOID ProcessKHOSTPacket(struct TNCINFO * TNC, UCHAR * Msg, int Len)
|
||||||
Rig_Command( (TRANSPORTENTRY *) -1, Msg);
|
Rig_Command( (TRANSPORTENTRY *) -1, Msg);
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %d ",
|
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %d ",
|
||||||
TNC->Streams[0].bytesRXed, TNC->Streams[0].bytesTXed, TNC->Streams[0].BytesAcked);
|
TNC->Streams[0].BytesRXed, TNC->Streams[0].BytesTXed, TNC->Streams[0].BytesAcked);
|
||||||
|
|
||||||
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
}
|
}
|
||||||
|
@ -1874,7 +1874,7 @@ VOID ProcessKHOSTPacket(struct TNCINFO * TNC, UCHAR * Msg, int Len)
|
||||||
memcpy(&CTBuff[3], &CTEXTMSG[Next], Len);
|
memcpy(&CTBuff[3], &CTEXTMSG[Next], Len);
|
||||||
EncodeAndSend(TNC, CTBuff, Len + 3);
|
EncodeAndSend(TNC, CTBuff, Len + 3);
|
||||||
EncodeAndSend(TNC, "E", 1); // Changeover when all sent
|
EncodeAndSend(TNC, "E", 1); // Changeover when all sent
|
||||||
TNC->Streams[0].bytesTXed += CTEXTLEN;
|
TNC->Streams[0].BytesTXed += CTEXTLEN;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
119
KISSHF.c
119
KISSHF.c
|
@ -50,8 +50,8 @@ int DoScanLine(struct TNCINFO * TNC, char * Buff, int Len);
|
||||||
VOID SendInitScript(struct TNCINFO * TNC);
|
VOID SendInitScript(struct TNCINFO * TNC);
|
||||||
int KISSHFGetLine(char * buf);
|
int KISSHFGetLine(char * buf);
|
||||||
int ProcessEscape(UCHAR * TXMsg);
|
int ProcessEscape(UCHAR * TXMsg);
|
||||||
VOID KISSHFProcessReceivedPacket(struct TNCINFO * TNC, int Channel);
|
VOID KISSHFProcessReceivedPacket(struct TNCINFO * TNC);
|
||||||
static int KissEncode(struct TNCINFO * TNC, UCHAR * inbuff, UCHAR * outbuff, int len, int Channel);
|
static int KissEncode(UCHAR * inbuff, UCHAR * outbuff, int len);
|
||||||
int ConnecttoKISS(int port);
|
int ConnecttoKISS(int port);
|
||||||
TRANSPORTENTRY * SetupNewSession(TRANSPORTENTRY * Session, char * Bufferptr);
|
TRANSPORTENTRY * SetupNewSession(TRANSPORTENTRY * Session, char * Bufferptr);
|
||||||
BOOL DecodeCallString(char * Calls, BOOL * Stay, BOOL * Spy, UCHAR * AXCalls);
|
BOOL DecodeCallString(char * Calls, BOOL * Stay, BOOL * Spy, UCHAR * AXCalls);
|
||||||
|
@ -265,7 +265,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
struct TNCINFO * TNC = TNCInfo[port];
|
struct TNCINFO * TNC = TNCInfo[port];
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
||||||
struct ScanEntry * Scan;
|
struct ScanEntry * Scan;
|
||||||
int Channel = ((TNC->PortRecord->PORTCONTROL.CHANNELNUM - 1) & 15) << 4;
|
|
||||||
|
|
||||||
if (TNC == NULL)
|
if (TNC == NULL)
|
||||||
return 0; // Port not defined
|
return 0; // Port not defined
|
||||||
|
@ -358,7 +357,7 @@ ok:
|
||||||
UCHAR * data = &buffptr->Data[0];
|
UCHAR * data = &buffptr->Data[0];
|
||||||
STREAM->FramesQueued--;
|
STREAM->FramesQueued--;
|
||||||
txlen = (int)buffptr->Len;
|
txlen = (int)buffptr->Len;
|
||||||
STREAM->bytesTXed += txlen;
|
STREAM->BytesTXed += txlen;
|
||||||
|
|
||||||
bytes=SerialSendData(TNC, data, txlen);
|
bytes=SerialSendData(TNC, data, txlen);
|
||||||
WritetoTrace(TNC, data, txlen);
|
WritetoTrace(TNC, data, txlen);
|
||||||
|
@ -418,10 +417,7 @@ ok:
|
||||||
|
|
||||||
if (buff->PID != 240) // ax.25 address
|
if (buff->PID != 240) // ax.25 address
|
||||||
{
|
{
|
||||||
txlen = KissEncode(TNC, &buff->PID, txbuff, txlen, Channel);
|
txlen = KissEncode(&buff->PID, txbuff, txlen);
|
||||||
|
|
||||||
// We need to che check for ackmode
|
|
||||||
|
|
||||||
txlen = send(TNC->TCPSock, txbuff, txlen, 0);
|
txlen = send(TNC->TCPSock, txbuff, txlen, 0);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -508,8 +504,7 @@ ok:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((toupper(buff->L2DATA[0]) == 'C' && buff->L2DATA[1] == ' ' && txlen > 2) // Connect
|
if (toupper(buff->L2DATA[0]) == 'C' && buff->L2DATA[1] == ' ' && txlen > 2) // Connect
|
||||||
|| (toupper(buff->L2DATA[0]) == 'N' && buff->L2DATA[1] == ' ' && txlen > 2)) // Connect
|
|
||||||
{
|
{
|
||||||
// Connect Command. Pass to L2 code to start session
|
// Connect Command. Pass to L2 code to start session
|
||||||
|
|
||||||
|
@ -621,9 +616,9 @@ noFlip3:
|
||||||
|
|
||||||
RESET2(LINK); // RESET ALL FLAGS
|
RESET2(LINK); // RESET ALL FLAGS
|
||||||
|
|
||||||
if (toupper(buff->L2DATA[0]) == 'N' && SUPPORT2point2)
|
// if (CMD->String[0] == 'N' && SUPPORT2point2)
|
||||||
LINK->L2STATE = 1; // New (2.2) send XID
|
// LINK->L2STATE = 1; // New (2.2) send XID
|
||||||
else
|
// else
|
||||||
LINK->L2STATE = 2; // Send SABM
|
LINK->L2STATE = 2; // Send SABM
|
||||||
|
|
||||||
LINK->CIRCUITPOINTER = NewSess;
|
LINK->CIRCUITPOINTER = NewSess;
|
||||||
|
@ -725,18 +720,12 @@ VOID KISSHFReleaseTNC(struct TNCINFO * TNC)
|
||||||
ReleaseOtherPorts(TNC);
|
ReleaseOtherPorts(TNC);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID KISSHFSuspendPort(struct TNCINFO * TNC, struct TNCINFO * THISTNC)
|
VOID KISSHFSuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
||||||
{
|
{
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = 1;
|
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Interlocked");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID KISSHFReleasePort(struct TNCINFO * TNC)
|
VOID KISSHFReleasePort(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = 0;
|
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int WebProc(struct TNCINFO * TNC, char * Buff, BOOL LOCAL)
|
static int WebProc(struct TNCINFO * TNC, char * Buff, BOOL LOCAL)
|
||||||
|
@ -746,9 +735,9 @@ static int WebProc(struct TNCINFO * TNC, char * Buff, BOOL LOCAL)
|
||||||
"function ScrollOutput()\r\n"
|
"function ScrollOutput()\r\n"
|
||||||
"{var textarea = document.getElementById('textarea');"
|
"{var textarea = document.getElementById('textarea');"
|
||||||
"textarea.scrollTop = textarea.scrollHeight;}</script>"
|
"textarea.scrollTop = textarea.scrollHeight;}</script>"
|
||||||
"</head><title>KISSHF Status</title></head><body id=Text onload=\"ScrollOutput()\">"
|
"</head><title>VARA Status</title></head><body id=Text onload=\"ScrollOutput()\">"
|
||||||
"<h2><form method=post target=\"POPUPW\" onsubmit=\"POPUPW = window.open('about:blank','POPUPW',"
|
"<h2><form method=post target=\"POPUPW\" onsubmit=\"POPUPW = window.open('about:blank','POPUPW',"
|
||||||
"'width=440,height=50');\" action=ARDOPAbort?%d>KISSHF Status"
|
"'width=440,height=150');\" action=ARDOPAbort?%d>KISSHF Status"
|
||||||
"<input name=Save value=\"Abort Session\" type=submit style=\"position: absolute; right: 20;\"></form></h2>",
|
"<input name=Save value=\"Abort Session\" type=submit style=\"position: absolute; right: 20;\"></form></h2>",
|
||||||
TNC->Port);
|
TNC->Port);
|
||||||
|
|
||||||
|
@ -757,14 +746,14 @@ static int WebProc(struct TNCINFO * TNC, char * Buff, BOOL LOCAL)
|
||||||
|
|
||||||
Len += sprintf(&Buff[Len], "<tr><td width=110px>Comms State</td><td>%s</td></tr>", TNC->WEB_COMMSSTATE);
|
Len += sprintf(&Buff[Len], "<tr><td width=110px>Comms State</td><td>%s</td></tr>", TNC->WEB_COMMSSTATE);
|
||||||
Len += sprintf(&Buff[Len], "<tr><td>TNC State</td><td>%s</td></tr>", TNC->WEB_TNCSTATE);
|
Len += sprintf(&Buff[Len], "<tr><td>TNC State</td><td>%s</td></tr>", TNC->WEB_TNCSTATE);
|
||||||
// Len += sprintf(&Buff[Len], "<tr><td>Mode</td><td>%s</td></tr>", TNC->WEB_MODE);
|
Len += sprintf(&Buff[Len], "<tr><td>Mode</td><td>%s</td></tr>", TNC->WEB_MODE);
|
||||||
// Len += sprintf(&Buff[Len], "<tr><td>Channel State</td><td>%s</td></tr>", TNC->WEB_CHANSTATE);
|
Len += sprintf(&Buff[Len], "<tr><td>Channel State</td><td>%s</td></tr>", TNC->WEB_CHANSTATE);
|
||||||
// Len += sprintf(&Buff[Len], "<tr><td>Proto State</td><td>%s</td></tr>", TNC->WEB_PROTOSTATE);
|
Len += sprintf(&Buff[Len], "<tr><td>Proto State</td><td>%s</td></tr>", TNC->WEB_PROTOSTATE);
|
||||||
// Len += sprintf(&Buff[Len], "<tr><td>Traffic</td><td>%s</td></tr>", TNC->WEB_TRAFFIC);
|
Len += sprintf(&Buff[Len], "<tr><td>Traffic</td><td>%s</td></tr>", TNC->WEB_TRAFFIC);
|
||||||
// Len += sprintf(&Buff[Len], "<tr><td>TNC Restarts</td><td></td></tr>", TNC->WEB_RESTARTS);
|
// Len += sprintf(&Buff[Len], "<tr><td>TNC Restarts</td><td></td></tr>", TNC->WEB_RESTARTS);
|
||||||
Len += sprintf(&Buff[Len], "</table>");
|
Len += sprintf(&Buff[Len], "</table>");
|
||||||
|
|
||||||
Len += sprintf(&Buff[Len], "<textarea rows=2 style=\"width:500px; height:50px;\" id=textarea >%s</textarea>", TNC->WebBuffer);
|
Len += sprintf(&Buff[Len], "<textarea rows=10 style=\"width:500px; height:250px;\" id=textarea >%s</textarea>", TNC->WebBuffer);
|
||||||
Len = DoScanLine(TNC, Buff, Len);
|
Len = DoScanLine(TNC, Buff, Len);
|
||||||
|
|
||||||
return Len;
|
return Len;
|
||||||
|
@ -987,7 +976,6 @@ VOID KISSThread(void * portptr)
|
||||||
char * ptr1;
|
char * ptr1;
|
||||||
char * ptr2;
|
char * ptr2;
|
||||||
UINT * buffptr;
|
UINT * buffptr;
|
||||||
int Channel = ((TNC->PortRecord->PORTCONTROL.CHANNELNUM - 1) & 15) << 4;
|
|
||||||
|
|
||||||
if (TNC->HostName == NULL)
|
if (TNC->HostName == NULL)
|
||||||
return;
|
return;
|
||||||
|
@ -1196,7 +1184,7 @@ VOID KISSThread(void * portptr)
|
||||||
if (FD_ISSET(TNC->TCPSock, &readfs))
|
if (FD_ISSET(TNC->TCPSock, &readfs))
|
||||||
{
|
{
|
||||||
GetSemaphore(&Semaphore, 52);
|
GetSemaphore(&Semaphore, 52);
|
||||||
KISSHFProcessReceivedPacket(TNC, Channel);
|
KISSHFProcessReceivedPacket(TNC);
|
||||||
FreeSemaphore(&Semaphore);
|
FreeSemaphore(&Semaphore);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1255,43 +1243,16 @@ static int KissDecode(UCHAR * inbuff, UCHAR * outbuff, int len)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#define ACKMODE 4 // CAN USE ACK REQURED FRAMES
|
|
||||||
#define MSGHDDRLEN (USHORT)(sizeof(VOID *) + sizeof(UCHAR) + sizeof(USHORT))
|
|
||||||
#define ONEMINUTE 60*3
|
|
||||||
|
|
||||||
static int KissEncode(struct TNCINFO * TNC, UCHAR * inbuff, UCHAR * outbuff, int len, int Channel)
|
static int KissEncode(UCHAR * inbuff, UCHAR * outbuff, int len)
|
||||||
{
|
{
|
||||||
int i,txptr=0;
|
int i,txptr=0;
|
||||||
UCHAR c;
|
UCHAR c;
|
||||||
|
|
||||||
outbuff[0] = FEND;
|
outbuff[0]=FEND;
|
||||||
outbuff[1] = Channel;
|
outbuff[1]=0;
|
||||||
txptr=2;
|
txptr=2;
|
||||||
|
|
||||||
// See if we need ackmode
|
|
||||||
|
|
||||||
if (TNC->PortRecord->PORTCONTROL.KISSFLAGS & ACKMODE)
|
|
||||||
{
|
|
||||||
UCHAR * ptr = inbuff - MSGHDDRLEN;
|
|
||||||
PMESSAGE Buffer = (PMESSAGE)ptr;
|
|
||||||
|
|
||||||
if (Buffer->Linkptr) // Frame Needs ACK
|
|
||||||
{
|
|
||||||
UINT ACKWORD = (UINT)(Buffer->Linkptr - LINKS);
|
|
||||||
outbuff[1] |= 0x0c; // ACK OPCODE
|
|
||||||
outbuff[2] = ACKWORD & 0xff;
|
|
||||||
outbuff[3] = (ACKWORD >> 8) &0xff;
|
|
||||||
|
|
||||||
Buffer->Linkptr->L2TIMER = ONEMINUTE; // Extend timeout
|
|
||||||
|
|
||||||
txptr = 4;
|
|
||||||
|
|
||||||
// have to reset flag so trace doesnt clear it
|
|
||||||
|
|
||||||
Buffer->Linkptr = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i=0;i<len;i++)
|
for (i=0;i<len;i++)
|
||||||
{
|
{
|
||||||
c=inbuff[i];
|
c=inbuff[i];
|
||||||
|
@ -1322,7 +1283,7 @@ static int KissEncode(struct TNCINFO * TNC, UCHAR * inbuff, UCHAR * outbuff, int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID KISSHFProcessReceivedPacket(struct TNCINFO * TNC, int Channel)
|
VOID KISSHFProcessReceivedPacket(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
int InputLen, MsgLen;
|
int InputLen, MsgLen;
|
||||||
unsigned char * ptr;
|
unsigned char * ptr;
|
||||||
|
@ -1374,42 +1335,10 @@ VOID KISSHFProcessReceivedPacket(struct TNCINFO * TNC, int Channel)
|
||||||
|
|
||||||
if (MsgLen > 1)
|
if (MsgLen > 1)
|
||||||
{
|
{
|
||||||
PMESSAGE Buff;
|
PMESSAGE Buff = GetBuff();
|
||||||
|
|
||||||
if ((TNC->ARDOPBuffer[1] & 0xf0) != Channel)
|
|
||||||
goto ignoreit;
|
|
||||||
|
|
||||||
Buff = GetBuff();
|
|
||||||
|
|
||||||
MsgLen = KissDecode(TNC->ARDOPBuffer, Buffer, MsgLen);
|
MsgLen = KissDecode(TNC->ARDOPBuffer, Buffer, MsgLen);
|
||||||
|
|
||||||
// See if ACKMODE ACK
|
|
||||||
|
|
||||||
if ((Buffer[1] & 0xf) == 12)
|
|
||||||
{
|
|
||||||
//Ackmode
|
|
||||||
|
|
||||||
struct _LINKTABLE * LINK;
|
|
||||||
int ACKWORD = Buffer[2] | Buffer[3] << 8;
|
|
||||||
|
|
||||||
if (ACKWORD < MAXLINKS)
|
|
||||||
{
|
|
||||||
LINK = LINKS + ACKWORD;
|
|
||||||
|
|
||||||
if (LINK->L2TIMER)
|
|
||||||
LINK->L2TIMER = LINK->L2TIME;
|
|
||||||
}
|
|
||||||
|
|
||||||
ReleaseBuffer(Buff);
|
|
||||||
goto ignoreit;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((Buffer[1] & 0xf) != 0)
|
|
||||||
{
|
|
||||||
ReleaseBuffer(Buff);
|
|
||||||
goto ignoreit; // Not data
|
|
||||||
}
|
|
||||||
|
|
||||||
// we dont need the FENDS or control byte
|
// we dont need the FENDS or control byte
|
||||||
|
|
||||||
MsgLen -= 3;
|
MsgLen -= 3;
|
||||||
|
@ -1425,8 +1354,6 @@ VOID KISSHFProcessReceivedPacket(struct TNCINFO * TNC, int Channel)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ignoreit:
|
|
||||||
|
|
||||||
if (TNC->InputLen == 0)
|
if (TNC->InputLen == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -1536,7 +1463,7 @@ void DetachKISSHF(struct PORTCONTROL * PORT)
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
||||||
|
|
||||||
if (STREAM->Attached)
|
if (STREAM->Attached)
|
||||||
STREAM->ReportDISC = 10; // Tell Node but give time for error message to display
|
STREAM->ReportDISC = TRUE; // Tell Node
|
||||||
|
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
STREAM->Connected = FALSE;
|
STREAM->Connected = FALSE;
|
||||||
|
|
493
L2Code.c
493
L2Code.c
|
@ -47,7 +47,8 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
#define THREESECS 3*3
|
#define THREESECS 3*3
|
||||||
|
|
||||||
|
|
||||||
VOID L2Routine(struct PORTCONTROL * PORT, PMESSAGE Buffer);
|
VOID L2SENDCOMMAND();
|
||||||
|
VOID L2ROUTINE();
|
||||||
MESSAGE * SETUPL2MESSAGE(struct _LINKTABLE * LINK, UCHAR CMD);
|
MESSAGE * SETUPL2MESSAGE(struct _LINKTABLE * LINK, UCHAR CMD);
|
||||||
VOID SendSupervisCmd(struct _LINKTABLE * LINK);
|
VOID SendSupervisCmd(struct _LINKTABLE * LINK);
|
||||||
void SEND_RR_RESP(struct _LINKTABLE * LINK, UCHAR PF);
|
void SEND_RR_RESP(struct _LINKTABLE * LINK, UCHAR PF);
|
||||||
|
@ -105,13 +106,6 @@ void AttachKISSHF(struct PORTCONTROL * PORT, MESSAGE * Buffer);
|
||||||
void DetachKISSHF(struct PORTCONTROL * PORT);
|
void DetachKISSHF(struct PORTCONTROL * PORT);
|
||||||
void KISSHFConnected(struct PORTCONTROL * PORT, struct _LINKTABLE * LINK);
|
void KISSHFConnected(struct PORTCONTROL * PORT, struct _LINKTABLE * LINK);
|
||||||
void WriteConnectLog(char * fromcall, char * tocall, UCHAR * Mode);
|
void WriteConnectLog(char * fromcall, char * tocall, UCHAR * Mode);
|
||||||
int seeifInterlockneeded(struct PORTCONTROL * PORT);
|
|
||||||
int seeifUnlockneeded(struct _LINKTABLE * LINK);
|
|
||||||
int CheckKissInterlock(struct PORTCONTROL * MYPORT, int Exclusive);
|
|
||||||
void hookL2SessionAccepted(int Port, char * fromCall, char * toCall, struct _LINKTABLE * LINK);
|
|
||||||
void hookL2SessionDeleted(struct _LINKTABLE * LINK);
|
|
||||||
void hookL2SessionAttempt(int Port, char * fromCall, char * toCall, struct _LINKTABLE * LINK);
|
|
||||||
|
|
||||||
|
|
||||||
extern int REALTIMETICKS;
|
extern int REALTIMETICKS;
|
||||||
|
|
||||||
|
@ -779,171 +773,163 @@ VOID L2FORUS(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buff
|
||||||
|
|
||||||
VOID ProcessXIDCommand(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buffer, MESSAGE * ADJBUFFER, UCHAR CTL, UCHAR MSGFLAG)
|
VOID ProcessXIDCommand(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buffer, MESSAGE * ADJBUFFER, UCHAR CTL, UCHAR MSGFLAG)
|
||||||
{
|
{
|
||||||
// I think it is fairly safe to accept XID as soon as we
|
// I think it is fairly safe to accept XID as soon as we
|
||||||
// can process SREJ, but only accept Mod 8 and 256 Byte frames
|
// can process SREJ, but only accept Mod 8 and 256 Byte frames
|
||||||
|
|
||||||
// I think the only way to run 2.2 Mod 8 is to preceed a
|
// I think the only way to run 2.2 Mod 8 is to preceed a
|
||||||
// SABM with XID, but others don't seem to agree!
|
// SABM with XID, but others don't seem to agree!
|
||||||
|
|
||||||
// Run through XID fields, changing any we don't like,
|
// Run through XID fields, changing any we don't like,
|
||||||
// then return an XID response
|
// then return an XID response
|
||||||
|
|
||||||
// Decode and process XID
|
// Decode and process XID
|
||||||
|
|
||||||
UCHAR * ptr = &ADJBUFFER->PID;
|
UCHAR * ptr = &ADJBUFFER->PID;
|
||||||
UCHAR * ptr1, * ptr2;
|
UCHAR * ptr1, * ptr2;
|
||||||
UCHAR TEMPDIGI[57];
|
UCHAR TEMPDIGI[57];
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
// Check Interlock - should we also check exclude etc?. No, checked in L2FORUS
|
if (*ptr++ == 0x82 && *ptr++ == 0x80)
|
||||||
|
|
||||||
if (CheckKissInterlock(PORT, TRUE)) // Interlock with ARDOP/VARA etc
|
|
||||||
{
|
|
||||||
L2SENDDM(PORT, Buffer, ADJBUFFER);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (*ptr++ == 0x82 && *ptr++ == 0x80)
|
|
||||||
{
|
|
||||||
int Type;
|
|
||||||
int Len;
|
|
||||||
unsigned int value;
|
|
||||||
int xidlen = *(ptr++) << 8;
|
|
||||||
xidlen += *ptr++;
|
|
||||||
|
|
||||||
// XID is set of Type, Len, Value n-tuples
|
|
||||||
|
|
||||||
while (xidlen > 0)
|
|
||||||
{
|
{
|
||||||
Type = *ptr++;
|
int Type;
|
||||||
Len = *ptr++;
|
int Len;
|
||||||
|
unsigned int value;
|
||||||
|
int xidlen = *(ptr++) << 8;
|
||||||
|
xidlen += *ptr++;
|
||||||
|
|
||||||
|
// XID is set of Type, Len, Value n-tuples
|
||||||
|
|
||||||
value = 0;
|
while (xidlen > 0)
|
||||||
xidlen -= (Len + 2);
|
|
||||||
|
|
||||||
while (Len--)
|
|
||||||
{
|
{
|
||||||
value <<=8;
|
Type = *ptr++;
|
||||||
value += *ptr++;
|
Len = *ptr++;
|
||||||
}
|
|
||||||
switch(Type)
|
value = 0;
|
||||||
{
|
xidlen -= (Len + 2);
|
||||||
case 2: //Bin fields
|
|
||||||
|
|
||||||
break;
|
while (Len--)
|
||||||
|
|
||||||
case 3:
|
|
||||||
|
|
||||||
if ((value & OPMustHave) != OPMustHave)
|
|
||||||
goto BadXID;
|
|
||||||
|
|
||||||
if ((value & OPMod8) == 0)
|
|
||||||
goto BadXID;
|
|
||||||
|
|
||||||
if ((value & OPSREJMult) == 0)
|
|
||||||
goto BadXID;
|
|
||||||
|
|
||||||
|
|
||||||
// Reply Mod 8 SREJMULTI
|
|
||||||
|
|
||||||
value = OPMustHave | OPSREJMult | OPMod8;
|
|
||||||
ptr -=3;
|
|
||||||
*ptr++ = value >> 16;
|
|
||||||
*ptr++ = value >> 8;
|
|
||||||
*ptr++ = value;
|
|
||||||
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 6: //RX Size
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 8: //RX Window
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send back as XID response
|
|
||||||
|
|
||||||
LINK->L2STATE = 1; // XID received
|
|
||||||
LINK->Ver2point2 = TRUE; // Must support 2.2 if sent XID
|
|
||||||
LINK->L2TIME = PORT->PORTT1;
|
|
||||||
|
|
||||||
LINK->LINKPORT = PORT;
|
|
||||||
|
|
||||||
// save calls so we can match up SABM when it comes
|
|
||||||
|
|
||||||
memcpy(LINK->LINKCALL, Buffer->ORIGIN, 7);
|
|
||||||
LINK->LINKCALL[6] &= 0x1e; // Mask SSID
|
|
||||||
|
|
||||||
memcpy(LINK->OURCALL, Buffer->DEST, 7);
|
|
||||||
|
|
||||||
LINK->OURCALL[6] &= 0x1e; // Mask SSID
|
|
||||||
|
|
||||||
memset(LINK->DIGIS, 0, 56); // CLEAR DIGI FIELD IN CASE RECONNECT
|
|
||||||
|
|
||||||
if ((Buffer->ORIGIN[6] & 1) == 0) // End of Address
|
|
||||||
{
|
|
||||||
// THERE ARE DIGIS TO PROCESS - COPY TO WORK AREA reversed, THEN COPY BACK
|
|
||||||
|
|
||||||
memset(TEMPDIGI, 0, 57); // CLEAR DIGI FIELD IN CASE RECONNECT
|
|
||||||
|
|
||||||
ptr1 = &Buffer->ORIGIN[6]; // End of add
|
|
||||||
ptr2 = &TEMPDIGI[7 * 7]; // Last Temp Digi
|
|
||||||
|
|
||||||
while((*ptr1 & 1) == 0) // End of address bit
|
|
||||||
{
|
|
||||||
ptr1++;
|
|
||||||
memcpy(ptr2, ptr1, 7);
|
|
||||||
ptr2[6] &= 0x1e; // Mask Repeated and Last bits
|
|
||||||
ptr2 -= 7;
|
|
||||||
ptr1 += 6;
|
|
||||||
}
|
|
||||||
|
|
||||||
// LIST OF DIGI CALLS COMPLETE - COPY TO LINK CONTROL ENTRY
|
|
||||||
|
|
||||||
n = PORT->PORTMAXDIGIS;
|
|
||||||
|
|
||||||
ptr1 = ptr2 + 7; // First in TEMPDIGIS
|
|
||||||
ptr2 = &LINK->DIGIS[0];
|
|
||||||
|
|
||||||
while (*ptr1)
|
|
||||||
{
|
|
||||||
if (n == 0)
|
|
||||||
{
|
{
|
||||||
// Too many for us
|
value <<=8;
|
||||||
|
value += *ptr++;
|
||||||
CLEAROUTLINK(LINK);
|
|
||||||
ReleaseBuffer(Buffer);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
switch(Type)
|
||||||
|
{
|
||||||
|
case 2: //Bin fields
|
||||||
|
|
||||||
memcpy(ptr2, ptr1, 7);
|
break;
|
||||||
ptr1 += 7;
|
|
||||||
ptr2 += 7;
|
case 3:
|
||||||
n--;
|
|
||||||
|
if ((value & OPMustHave) != OPMustHave)
|
||||||
|
goto BadXID;
|
||||||
|
|
||||||
|
if ((value & OPMod8) == 0)
|
||||||
|
goto BadXID;
|
||||||
|
|
||||||
|
if ((value & OPSREJMult) == 0)
|
||||||
|
goto BadXID;
|
||||||
|
|
||||||
|
|
||||||
|
// Reply Mod 8 SREJMULTI
|
||||||
|
|
||||||
|
value = OPMustHave | OPSREJMult | OPMod8;
|
||||||
|
ptr -=3;
|
||||||
|
*ptr++ = value >> 16;
|
||||||
|
*ptr++ = value >> 8;
|
||||||
|
*ptr++ = value;
|
||||||
|
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 6: //RX Size
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 8: //RX Window
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Send back as XID response
|
||||||
|
|
||||||
|
LINK->L2STATE = 1; // XID received
|
||||||
|
LINK->Ver2point2 = TRUE; // Must support 2.2 if sent XID
|
||||||
|
LINK->L2TIME = PORT->PORTT1;
|
||||||
|
|
||||||
|
LINK->LINKPORT = PORT;
|
||||||
|
|
||||||
|
// save calls so we can match up SABM when it comes
|
||||||
|
|
||||||
|
memcpy(LINK->LINKCALL, Buffer->ORIGIN, 7);
|
||||||
|
LINK->LINKCALL[6] &= 0x1e; // Mask SSID
|
||||||
|
|
||||||
|
memcpy(LINK->OURCALL, Buffer->DEST, 7);
|
||||||
|
|
||||||
|
LINK->OURCALL[6] &= 0x1e; // Mask SSID
|
||||||
|
|
||||||
|
memset(LINK->DIGIS, 0, 56); // CLEAR DIGI FIELD IN CASE RECONNECT
|
||||||
|
|
||||||
|
if ((Buffer->ORIGIN[6] & 1) == 0) // End of Address
|
||||||
|
{
|
||||||
|
// THERE ARE DIGIS TO PROCESS - COPY TO WORK AREA reversed, THEN COPY BACK
|
||||||
|
|
||||||
|
memset(TEMPDIGI, 0, 57); // CLEAR DIGI FIELD IN CASE RECONNECT
|
||||||
|
|
||||||
|
ptr1 = &Buffer->ORIGIN[6]; // End of add
|
||||||
|
ptr2 = &TEMPDIGI[7 * 7]; // Last Temp Digi
|
||||||
|
|
||||||
|
while((*ptr1 & 1) == 0) // End of address bit
|
||||||
|
{
|
||||||
|
ptr1++;
|
||||||
|
memcpy(ptr2, ptr1, 7);
|
||||||
|
ptr2[6] &= 0x1e; // Mask Repeated and Last bits
|
||||||
|
ptr2 -= 7;
|
||||||
|
ptr1 += 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
// LIST OF DIGI CALLS COMPLETE - COPY TO LINK CONTROL ENTRY
|
||||||
|
|
||||||
|
n = PORT->PORTMAXDIGIS;
|
||||||
|
|
||||||
|
ptr1 = ptr2 + 7; // First in TEMPDIGIS
|
||||||
|
ptr2 = &LINK->DIGIS[0];
|
||||||
|
|
||||||
|
while (*ptr1)
|
||||||
|
{
|
||||||
|
if (n == 0)
|
||||||
|
{
|
||||||
|
// Too many for us
|
||||||
|
|
||||||
|
CLEAROUTLINK(LINK);
|
||||||
|
ReleaseBuffer(Buffer);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(ptr2, ptr1, 7);
|
||||||
|
ptr1 += 7;
|
||||||
|
ptr2 += 7;
|
||||||
|
n--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ADJBUFFER->CTL = CTL | PFBIT;
|
||||||
|
|
||||||
|
// Buffer->LENGTH = (UCHAR *)ADJBUFFER - (UCHAR *)Buffer + MSGHDDRLEN + 15; // SET UP BYTE COUNT
|
||||||
|
|
||||||
|
L2SWAPADDRESSES(Buffer); // SWAP ADDRESSES AND SET RESP BITS
|
||||||
|
|
||||||
|
// We need to save APPLMASK and ALIASPTR so following SABM connects to application
|
||||||
|
|
||||||
|
LINK->APPLMASK = APPLMASK;
|
||||||
|
LINK->ALIASPTR = ALIASPTR;
|
||||||
|
|
||||||
|
PUT_ON_PORT_Q(PORT, Buffer);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ADJBUFFER->CTL = CTL | PFBIT;
|
|
||||||
|
|
||||||
// Buffer->LENGTH = (UCHAR *)ADJBUFFER - (UCHAR *)Buffer + MSGHDDRLEN + 15; // SET UP BYTE COUNT
|
|
||||||
|
|
||||||
L2SWAPADDRESSES(Buffer); // SWAP ADDRESSES AND SET RESP BITS
|
|
||||||
|
|
||||||
// We need to save APPLMASK and ALIASPTR so following SABM connects to application
|
|
||||||
|
|
||||||
LINK->APPLMASK = APPLMASK;
|
|
||||||
LINK->ALIASPTR = ALIASPTR;
|
|
||||||
|
|
||||||
PUT_ON_PORT_Q(PORT, Buffer);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
BadXID:
|
BadXID:
|
||||||
L2SENDINVALIDCTRL(PORT, Buffer, ADJBUFFER, CTL);
|
L2SENDINVALIDCTRL(PORT, Buffer, ADJBUFFER, CTL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1114,25 +1100,13 @@ VOID L2SABM(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buffe
|
||||||
|
|
||||||
TRANSPORTENTRY * Session;
|
TRANSPORTENTRY * Session;
|
||||||
int CONERROR;
|
int CONERROR;
|
||||||
|
|
||||||
char toCall[12], fromCall[12];
|
|
||||||
|
|
||||||
|
|
||||||
if (LINK == 0) // NO LINK ENTRIES - SEND DM RESPONSE
|
if (LINK == 0) // NO LINK ENTRIES - SEND DM RESPONSE
|
||||||
{
|
{
|
||||||
L2SENDDM(PORT, Buffer, ADJBUFFER);
|
L2SENDDM(PORT, Buffer, ADJBUFFER);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CheckKissInterlock(PORT, TRUE)) // Interlock with ARDOP/VARA etc
|
|
||||||
{
|
|
||||||
L2SENDDM(PORT, Buffer, ADJBUFFER);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
toCall[ConvFromAX25(ADJBUFFER->DEST, toCall)] = 0;
|
|
||||||
fromCall[ConvFromAX25(ADJBUFFER->ORIGIN, fromCall)] = 0;
|
|
||||||
|
|
||||||
SETUPNEWL2SESSION(LINK, PORT, Buffer, MSGFLAG);
|
SETUPNEWL2SESSION(LINK, PORT, Buffer, MSGFLAG);
|
||||||
|
|
||||||
if (LINK->L2STATE != 5) // Setup OK?
|
if (LINK->L2STATE != 5) // Setup OK?
|
||||||
|
@ -1141,10 +1115,6 @@ VOID L2SABM(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buffe
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// See if need to Interlock non-sharable modes, eg ARDOP and VARA
|
|
||||||
|
|
||||||
seeifInterlockneeded(PORT);
|
|
||||||
|
|
||||||
// IF CONNECT TO APPL ADDRESS, SET UP APPL SESSION
|
// IF CONNECT TO APPL ADDRESS, SET UP APPL SESSION
|
||||||
|
|
||||||
if (APPLMASK == 0)
|
if (APPLMASK == 0)
|
||||||
|
@ -1159,10 +1129,13 @@ VOID L2SABM(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buffe
|
||||||
int Paclen= PORT->PORTPACLEN;
|
int Paclen= PORT->PORTPACLEN;
|
||||||
UCHAR * ptr;
|
UCHAR * ptr;
|
||||||
|
|
||||||
if (LogAllConnects)
|
if (LogAllConnects)
|
||||||
|
{
|
||||||
|
char toCall[12], fromCall[12];
|
||||||
|
toCall[ConvFromAX25(ADJBUFFER->DEST, toCall)] = 0;
|
||||||
|
fromCall[ConvFromAX25(ADJBUFFER->ORIGIN, fromCall)] = 0;
|
||||||
WriteConnectLog(fromCall, toCall, "AX.25");
|
WriteConnectLog(fromCall, toCall, "AX.25");
|
||||||
|
}
|
||||||
hookL2SessionAccepted(PORT->PORTNUMBER, fromCall, toCall, LINK);
|
|
||||||
|
|
||||||
L2SENDUA(PORT, Buffer, ADJBUFFER);
|
L2SENDUA(PORT, Buffer, ADJBUFFER);
|
||||||
|
|
||||||
|
@ -1277,9 +1250,7 @@ VOID L2SABM(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buffe
|
||||||
// ACCEPT THE CONNECT, THEN INVOKE THE ALIAS
|
// ACCEPT THE CONNECT, THEN INVOKE THE ALIAS
|
||||||
|
|
||||||
L2SENDUA(PORT, Buffer, ADJBUFFER);
|
L2SENDUA(PORT, Buffer, ADJBUFFER);
|
||||||
|
|
||||||
hookL2SessionAccepted(PORT->PORTNUMBER, fromCall, toCall, LINK);
|
|
||||||
|
|
||||||
if (PORT->TNC && PORT->TNC->Hardware == H_KISSHF)
|
if (PORT->TNC && PORT->TNC->Hardware == H_KISSHF)
|
||||||
{
|
{
|
||||||
struct DATAMESSAGE * Msg;
|
struct DATAMESSAGE * Msg;
|
||||||
|
@ -1378,9 +1349,6 @@ VOID L2SABM(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE * Buffe
|
||||||
|
|
||||||
L2SENDUA(PORT, Buffer, ADJBUFFER);
|
L2SENDUA(PORT, Buffer, ADJBUFFER);
|
||||||
|
|
||||||
hookL2SessionAccepted(PORT->PORTNUMBER, fromCall, toCall, LINK);
|
|
||||||
|
|
||||||
|
|
||||||
if (PORT->TNC && PORT->TNC->Hardware == H_KISSHF)
|
if (PORT->TNC && PORT->TNC->Hardware == H_KISSHF)
|
||||||
{
|
{
|
||||||
struct DATAMESSAGE * Msg;
|
struct DATAMESSAGE * Msg;
|
||||||
|
@ -2440,8 +2408,6 @@ VOID PROC_I_FRAME(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT, MESSAGE *
|
||||||
Length = Buffer->LENGTH - (MSGHDDRLEN + 15); // Buffer Header + addrs + CTL
|
Length = Buffer->LENGTH - (MSGHDDRLEN + 15); // Buffer Header + addrs + CTL
|
||||||
Info = &Buffer->PID;
|
Info = &Buffer->PID;
|
||||||
|
|
||||||
LINK->bytesRXed += Length;
|
|
||||||
|
|
||||||
// Adjust for DIGIS
|
// Adjust for DIGIS
|
||||||
|
|
||||||
EOA = &Buffer->ORIGIN[6]; // End of address Bit
|
EOA = &Buffer->ORIGIN[6]; // End of address Bit
|
||||||
|
@ -2647,13 +2613,6 @@ VOID RESET2(struct _LINKTABLE * LINK)
|
||||||
|
|
||||||
VOID SENDSABM(struct _LINKTABLE * LINK)
|
VOID SENDSABM(struct _LINKTABLE * LINK)
|
||||||
{
|
{
|
||||||
char toCall[10];
|
|
||||||
char fromCall[10];
|
|
||||||
|
|
||||||
toCall[ConvFromAX25(LINK->LINKCALL, toCall)] = 0;
|
|
||||||
fromCall[ConvFromAX25(LINK->OURCALL, fromCall)] = 0;
|
|
||||||
hookL2SessionAttempt(LINK->LINKPORT->PORTNUMBER, fromCall, toCall, LINK);
|
|
||||||
|
|
||||||
L2SENDCOMMAND(LINK, SABM | PFBIT);
|
L2SENDCOMMAND(LINK, SABM | PFBIT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3097,7 +3056,7 @@ VOID ACKMSG(struct _LINKTABLE * LINK)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CONNECTFAILED(struct _LINKTABLE * LINK);
|
VOID CONNECTFAILED();
|
||||||
|
|
||||||
VOID L2TIMEOUT(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT)
|
VOID L2TIMEOUT(struct _LINKTABLE * LINK, struct PORTCONTROL * PORT)
|
||||||
{
|
{
|
||||||
|
@ -3267,10 +3226,6 @@ VOID SENDFRMR(struct _LINKTABLE * LINK)
|
||||||
|
|
||||||
VOID CLEAROUTLINK(struct _LINKTABLE * LINK)
|
VOID CLEAROUTLINK(struct _LINKTABLE * LINK)
|
||||||
{
|
{
|
||||||
hookL2SessionDeleted(LINK);
|
|
||||||
|
|
||||||
seeifUnlockneeded(LINK);
|
|
||||||
|
|
||||||
CLEARL2QUEUES(LINK); // TO RELEASE ANY BUFFERS
|
CLEARL2QUEUES(LINK); // TO RELEASE ANY BUFFERS
|
||||||
|
|
||||||
memset(LINK, 0, sizeof(struct _LINKTABLE));
|
memset(LINK, 0, sizeof(struct _LINKTABLE));
|
||||||
|
@ -3598,7 +3553,7 @@ VOID CONNECTREFUSED(struct _LINKTABLE * LINK)
|
||||||
ConnectFailedOrRefused(LINK, "Busy from");
|
ConnectFailedOrRefused(LINK, "Busy from");
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID L3CONNECTFAILED(struct _LINKTABLE * LINK);
|
VOID L3CONNECTFAILED();
|
||||||
|
|
||||||
VOID ConnectFailedOrRefused(struct _LINKTABLE * LINK, char * Msg)
|
VOID ConnectFailedOrRefused(struct _LINKTABLE * LINK, char * Msg)
|
||||||
{
|
{
|
||||||
|
@ -3638,7 +3593,7 @@ VOID ConnectFailedOrRefused(struct _LINKTABLE * LINK, char * Msg)
|
||||||
Buffer->LENGTH = (int)(ptr1 - (UCHAR *)Buffer);
|
Buffer->LENGTH = (int)(ptr1 - (UCHAR *)Buffer);
|
||||||
|
|
||||||
Session = LINK->CIRCUITPOINTER; // GET CIRCUIT TABLE ENTRY
|
Session = LINK->CIRCUITPOINTER; // GET CIRCUIT TABLE ENTRY
|
||||||
InSession = Session->L4CROSSLINK; // TO INCOMMING SESSION
|
InSession = Session->L4CROSSLINK; // TO INCOMMONG SESSION
|
||||||
|
|
||||||
CLEARSESSIONENTRY(Session);
|
CLEARSESSIONENTRY(Session);
|
||||||
|
|
||||||
|
@ -4005,141 +3960,3 @@ BOOL CheckForListeningSession(struct PORTCONTROL * PORT, MESSAGE * Msg)
|
||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int COUNTLINKS(int Port);
|
|
||||||
VOID SuspendOtherPorts(struct TNCINFO * ThisTNC);
|
|
||||||
VOID ReleaseOtherPorts(struct TNCINFO * ThisTNC);
|
|
||||||
|
|
||||||
|
|
||||||
int CheckKissInterlock(struct PORTCONTROL * PORT, int Exclusive)
|
|
||||||
{
|
|
||||||
// This checks for interlocked kiss and other ports. Returns 1 if attach/connect not allowed
|
|
||||||
|
|
||||||
// If Exclusive is not set allow connects on specified port up to l2limit,
|
|
||||||
|
|
||||||
// If Exclusive is set also don't allow any connects on specified port.
|
|
||||||
|
|
||||||
// Generally use Exclusive if locking a port that doesn't allow shared access, eg ARDOP, VARAus
|
|
||||||
|
|
||||||
// Maybe only Exclusive is needed, and just check session mode ports. Sharing of KISS ports is controlled by USERS
|
|
||||||
|
|
||||||
int Interlock = PORT->PORTINTERLOCK;
|
|
||||||
|
|
||||||
if (Interlock == 0)
|
|
||||||
return 0; // No locking
|
|
||||||
|
|
||||||
PORT = PORTTABLE;
|
|
||||||
|
|
||||||
if (Exclusive)
|
|
||||||
{
|
|
||||||
while(PORT)
|
|
||||||
{
|
|
||||||
if (PORT->TNC)
|
|
||||||
{
|
|
||||||
struct TNCINFO * TNC = PORT->TNC;
|
|
||||||
|
|
||||||
if (Interlock == TNC->RXRadio || Interlock == TNC->TXRadio) // Same Group
|
|
||||||
{
|
|
||||||
// See if port in use
|
|
||||||
|
|
||||||
int n;
|
|
||||||
|
|
||||||
for (n = 0; n <= 26; n++)
|
|
||||||
{
|
|
||||||
if (TNC->PortRecord->ATTACHEDSESSIONS[n])
|
|
||||||
{
|
|
||||||
return TNC->Port; ; // Refuse Connect
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
PORT = PORT->PORTPOINTER;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0; // ok to connect
|
|
||||||
}
|
|
||||||
|
|
||||||
int seeifInterlockneeded(struct PORTCONTROL * PORT)
|
|
||||||
{
|
|
||||||
// Can we just call SuspendOtherPorts - it won't do any harm if already suspended
|
|
||||||
// No, at that needs a TNC Record, so duplicate code here
|
|
||||||
|
|
||||||
int i;
|
|
||||||
int Interlock = PORT->PORTINTERLOCK;
|
|
||||||
struct TNCINFO * TNC;
|
|
||||||
|
|
||||||
if (Interlock == 0)
|
|
||||||
return 0; // No locking
|
|
||||||
|
|
||||||
for (i = 1; i <= MAXBPQPORTS; i++)
|
|
||||||
{
|
|
||||||
TNC = TNCInfo[i];
|
|
||||||
|
|
||||||
if (TNC)
|
|
||||||
if (Interlock == TNC->RXRadio || Interlock == TNC->TXRadio) // Same Group
|
|
||||||
if (TNC->SuspendPortProc && TNC->PortRecord->PORTCONTROL.PortSuspended == FALSE)
|
|
||||||
TNC->SuspendPortProc(TNC, TNC);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int seeifUnlockneeded(struct _LINKTABLE * LINK)
|
|
||||||
{
|
|
||||||
// We need to see if any other links are active on any interlocked KISS ports. If not, release the lock
|
|
||||||
|
|
||||||
int i;
|
|
||||||
int links = 0;
|
|
||||||
|
|
||||||
int Interlock;
|
|
||||||
struct TNCINFO * TNC;
|
|
||||||
struct PORTCONTROL * PORT = LINK->LINKPORT;
|
|
||||||
|
|
||||||
if (PORT == NULL)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
// Should only be called for KISS links, but just in case
|
|
||||||
|
|
||||||
if (PORT->PORTTYPE > 12) // INTERNAL or EXTERNAL?
|
|
||||||
return 0; // Not KISS Port
|
|
||||||
|
|
||||||
Interlock = PORT->PORTINTERLOCK;
|
|
||||||
|
|
||||||
if (Interlock == 0)
|
|
||||||
return 0; // No locking
|
|
||||||
|
|
||||||
|
|
||||||
// Count all L2 links on interlocked KISS ports
|
|
||||||
|
|
||||||
PORT = PORTTABLE;
|
|
||||||
|
|
||||||
while(PORT)
|
|
||||||
{
|
|
||||||
if (PORT->PORTTYPE <= 12) // INTERNAL or EXTERNAL?
|
|
||||||
if (Interlock == PORT->PORTINTERLOCK)
|
|
||||||
links += COUNTLINKS(PORT->PORTNUMBER);
|
|
||||||
|
|
||||||
PORT = PORT->PORTPOINTER;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (links > 1) // must be the one we are closing
|
|
||||||
return 0; // Keep lock
|
|
||||||
|
|
||||||
|
|
||||||
for (i = 1; i <= MAXBPQPORTS; i++)
|
|
||||||
{
|
|
||||||
TNC = TNCInfo[i];
|
|
||||||
|
|
||||||
if (TNC)
|
|
||||||
if (Interlock == TNC->RXRadio || Interlock == TNC->TXRadio) // Same Group
|
|
||||||
if (TNC->ReleasePortProc && TNC->PortRecord->PORTCONTROL.PortSuspended == TRUE)
|
|
||||||
TNC->ReleasePortProc(TNC);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
5
L4Code.c
5
L4Code.c
|
@ -56,7 +56,7 @@ VOID L3SWAPADDRESSES(L3MESSAGEBUFFER * L3MSG);
|
||||||
VOID L4TIMEOUT(TRANSPORTENTRY * L4);
|
VOID L4TIMEOUT(TRANSPORTENTRY * L4);
|
||||||
struct DEST_LIST * CHECKL3TABLES(struct _LINKTABLE * LINK, L3MESSAGEBUFFER * Msg);
|
struct DEST_LIST * CHECKL3TABLES(struct _LINKTABLE * LINK, L3MESSAGEBUFFER * Msg);
|
||||||
int CHECKIFBUSYL4(TRANSPORTENTRY * L4);
|
int CHECKIFBUSYL4(TRANSPORTENTRY * L4);
|
||||||
VOID AUTOTIMER(TRANSPORTENTRY * L4);
|
VOID AUTOTIMER();
|
||||||
VOID NRRecordRoute(UCHAR * Buff, int Len);
|
VOID NRRecordRoute(UCHAR * Buff, int Len);
|
||||||
VOID REFRESHROUTE(TRANSPORTENTRY * Session);
|
VOID REFRESHROUTE(TRANSPORTENTRY * Session);
|
||||||
VOID ACKFRAMES(L3MESSAGEBUFFER * L3MSG, TRANSPORTENTRY * L4, int NR);
|
VOID ACKFRAMES(L3MESSAGEBUFFER * L3MSG, TRANSPORTENTRY * L4, int NR);
|
||||||
|
@ -603,9 +603,6 @@ VOID L4BG()
|
||||||
// If we want to enforce PACLEN this may be a good place to do it
|
// If we want to enforce PACLEN this may be a good place to do it
|
||||||
|
|
||||||
Msglen = Msg->LENGTH - (MSGHDDRLEN + 1); //Dont include PID
|
Msglen = Msg->LENGTH - (MSGHDDRLEN + 1); //Dont include PID
|
||||||
|
|
||||||
LINK->bytesTXed += Msglen;
|
|
||||||
|
|
||||||
Paclen = L4->SESSPACLEN;
|
Paclen = L4->SESSPACLEN;
|
||||||
|
|
||||||
if (Paclen == 0)
|
if (Paclen == 0)
|
||||||
|
|
23
LinBPQ.c
23
LinBPQ.c
|
@ -76,7 +76,6 @@ void SaveAIS();
|
||||||
void initAIS();
|
void initAIS();
|
||||||
void DRATSPoll();
|
void DRATSPoll();
|
||||||
VOID GetPGConfig();
|
VOID GetPGConfig();
|
||||||
void SendBBSDataToPktMap();
|
|
||||||
|
|
||||||
extern uint64_t timeLoadedMS;
|
extern uint64_t timeLoadedMS;
|
||||||
|
|
||||||
|
@ -667,7 +666,7 @@ void ConTermPoll()
|
||||||
|
|
||||||
// Replace CR with CRLF
|
// Replace CR with CRLF
|
||||||
|
|
||||||
printf("%s", ptr);
|
printf(ptr);
|
||||||
|
|
||||||
if (ptr2)
|
if (ptr2)
|
||||||
printf("\r\n");
|
printf("\r\n");
|
||||||
|
@ -717,7 +716,7 @@ void ConTermPoll()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <getopt.h>
|
#include "getopt.h"
|
||||||
|
|
||||||
static struct option long_options[] =
|
static struct option long_options[] =
|
||||||
{
|
{
|
||||||
|
@ -816,7 +815,7 @@ int main(int argc, char * argv[])
|
||||||
{
|
{
|
||||||
case 'h':
|
case 'h':
|
||||||
|
|
||||||
printf("%s", HelpScreen);
|
printf(HelpScreen);
|
||||||
exit (0);
|
exit (0);
|
||||||
|
|
||||||
case 'l':
|
case 'l':
|
||||||
|
@ -1270,7 +1269,6 @@ int main(int argc, char * argv[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (i = optind; i < argc; i++)
|
for (i = optind; i < argc; i++)
|
||||||
|
|
||||||
{
|
{
|
||||||
if (_stricmp(argv[i], "tidymail") == 0)
|
if (_stricmp(argv[i], "tidymail") == 0)
|
||||||
DeleteRedundantMessages();
|
DeleteRedundantMessages();
|
||||||
|
@ -1282,10 +1280,6 @@ int main(int argc, char * argv[])
|
||||||
printf("Mail Started\n");
|
printf("Mail Started\n");
|
||||||
Logprintf(LOG_BBS, NULL, '!', "Mail Starting");
|
Logprintf(LOG_BBS, NULL, '!', "Mail Starting");
|
||||||
|
|
||||||
APIClock = 0;
|
|
||||||
|
|
||||||
SendBBSDataToPktMap();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1294,10 +1288,6 @@ int main(int argc, char * argv[])
|
||||||
|
|
||||||
AGWActive = AGWAPIInit();
|
AGWActive = AGWAPIInit();
|
||||||
|
|
||||||
if (Redirected == 0)
|
|
||||||
ConTerm.BPQStream = FindFreeStream();
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
|
|
||||||
for (i = 1; i < argc; i++)
|
for (i = 1; i < argc; i++)
|
||||||
|
@ -1584,13 +1574,6 @@ int main(int argc, char * argv[])
|
||||||
DoHouseKeeping(FALSE);
|
DoHouseKeeping(FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (APIClock < NOW)
|
|
||||||
{
|
|
||||||
SendBBSDataToPktMap();
|
|
||||||
APIClock = NOW + 7200; // Every 2 hours
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
tm = gmtime(&NOW);
|
tm = gmtime(&NOW);
|
||||||
|
|
||||||
if (tm->tm_wday == 0) // Sunday
|
if (tm->tm_wday == 0) // Sunday
|
||||||
|
|
|
@ -23,8 +23,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
|
|
||||||
#include "bpqmail.h"
|
#include "bpqmail.h"
|
||||||
|
|
||||||
void SendMessageReadEvent(char * call, struct MsgInfo * Msg);
|
void SendMessageReadEvent(struct UserInfo * user, struct MsgInfo * Msg);
|
||||||
void MQTTMessageEvent(void* message);
|
|
||||||
|
|
||||||
|
|
||||||
VOID ProcessMBLLine(CIRCUIT * conn, struct UserInfo * user, UCHAR* Buffer, int len)
|
VOID ProcessMBLLine(CIRCUIT * conn, struct UserInfo * user, UCHAR* Buffer, int len)
|
||||||
|
@ -200,12 +199,6 @@ VOID ProcessMBLLine(CIRCUIT * conn, struct UserInfo * user, UCHAR* Buffer, int l
|
||||||
}
|
}
|
||||||
|
|
||||||
conn->FwdMsg->Locked = 0; // Unlock
|
conn->FwdMsg->Locked = 0; // Unlock
|
||||||
|
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(conn->FwdMsg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -289,7 +282,7 @@ VOID ProcessMBLLine(CIRCUIT * conn, struct UserInfo * user, UCHAR* Buffer, int l
|
||||||
{
|
{
|
||||||
// Reverse forward request
|
// Reverse forward request
|
||||||
|
|
||||||
// If we have just sent a message, Flag it as sent
|
// If we have just sent a nessage, Flag it as sent
|
||||||
|
|
||||||
if (conn->FBBMsgsSent)
|
if (conn->FBBMsgsSent)
|
||||||
{
|
{
|
||||||
|
@ -307,11 +300,6 @@ VOID ProcessMBLLine(CIRCUIT * conn, struct UserInfo * user, UCHAR* Buffer, int l
|
||||||
|
|
||||||
conn->FwdMsg->Locked = 0; // Unlock
|
conn->FwdMsg->Locked = 0; // Unlock
|
||||||
|
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(conn->FwdMsg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
conn->UserPointer->ForwardingInfo->MsgCount--;
|
conn->UserPointer->ForwardingInfo->MsgCount--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -366,11 +354,6 @@ VOID ProcessMBLLine(CIRCUIT * conn, struct UserInfo * user, UCHAR* Buffer, int l
|
||||||
conn->FwdMsg->datechanged=time(NULL);
|
conn->FwdMsg->datechanged=time(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(conn->FwdMsg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
conn->UserPointer->ForwardingInfo->MsgCount--;
|
conn->UserPointer->ForwardingInfo->MsgCount--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,203 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="MCP2221"
|
||||||
|
ProjectGUID="{FCBB40CD-F7C2-4A97-989A-FC5CEADF7FC1}"
|
||||||
|
RootNamespace="MCP2221"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="2"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="3"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib setupapi.lib $(NOINHERIT)"
|
||||||
|
LinkIncremental="2"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="1"
|
||||||
|
WholeProgramOptimization="1"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||||
|
RuntimeLibrary="2"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib $(NoInherit)"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\hid.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\MCP2221.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
12
MULTIPSK.c
12
MULTIPSK.c
|
@ -60,7 +60,7 @@ static void ConnecttoMPSKThread(void * portptr);
|
||||||
void CreateMHWindow();
|
void CreateMHWindow();
|
||||||
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
||||||
|
|
||||||
static int ConnecttoMPSK(int port);
|
static int ConnecttoMPSK();
|
||||||
static int ProcessReceivedData(int bpqport);
|
static int ProcessReceivedData(int bpqport);
|
||||||
static int ProcessLine(char * buf, int Port);
|
static int ProcessLine(char * buf, int Port);
|
||||||
int KillTNC(struct TNCINFO * TNC);
|
int KillTNC(struct TNCINFO * TNC);
|
||||||
|
@ -71,6 +71,8 @@ static VOID SendData(struct TNCINFO * TNC, char * Msg, int MsgLen);
|
||||||
static VOID DoMonitorHddr(struct TNCINFO * TNC, struct AGWHEADER * RXHeader, UCHAR * Msg);
|
static VOID DoMonitorHddr(struct TNCINFO * TNC, struct AGWHEADER * RXHeader, UCHAR * Msg);
|
||||||
VOID SendRPBeacon(struct TNCINFO * TNC);
|
VOID SendRPBeacon(struct TNCINFO * TNC);
|
||||||
|
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
|
|
||||||
extern UCHAR BPQDirectory[];
|
extern UCHAR BPQDirectory[];
|
||||||
|
|
||||||
#define MAXMPSKPORTS 16
|
#define MAXMPSKPORTS 16
|
||||||
|
@ -1315,7 +1317,7 @@ VOID ProcessMSPKData(struct TNCINFO * TNC)
|
||||||
|
|
||||||
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
||||||
|
|
||||||
STREAM->bytesRXed += TNC->DataLen;
|
STREAM->BytesRXed += TNC->DataLen;
|
||||||
}
|
}
|
||||||
|
|
||||||
TNC->DataLen = 0;
|
TNC->DataLen = 0;
|
||||||
|
@ -1385,7 +1387,7 @@ DataLoop:
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = 0;
|
||||||
|
|
||||||
buffptr = GetBuff();
|
buffptr = GetBuff();
|
||||||
if (buffptr)
|
if (buffptr)
|
||||||
|
@ -1400,7 +1402,7 @@ DataLoop:
|
||||||
|
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = 0;
|
||||||
|
|
||||||
UpdateMH(TNC, CallFrom, '+', 'I');
|
UpdateMH(TNC, CallFrom, '+', 'I');
|
||||||
|
|
||||||
|
@ -1481,7 +1483,7 @@ VOID SendData(struct TNCINFO * TNC, char * Msg, int MsgLen)
|
||||||
char * inptr = Msg;
|
char * inptr = Msg;
|
||||||
SOCKET sock = TNCInfo[MasterPort[TNC->Port]]->TCPSock;
|
SOCKET sock = TNCInfo[MasterPort[TNC->Port]]->TCPSock;
|
||||||
|
|
||||||
TNC->Streams[0].bytesTXed += MsgLen;
|
TNC->Streams[0].BytesTXed += MsgLen;
|
||||||
|
|
||||||
for (n = 0; n < MsgLen; n++)
|
for (n = 0; n < MsgLen; n++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -43,7 +43,6 @@ struct SEM AllocSemaphore = {0, 0};
|
||||||
struct SEM ConSemaphore = {0, 0};
|
struct SEM ConSemaphore = {0, 0};
|
||||||
struct SEM Semaphore = {0, 0};
|
struct SEM Semaphore = {0, 0};
|
||||||
struct SEM OutputSEM = {0, 0};
|
struct SEM OutputSEM = {0, 0};
|
||||||
struct SEM ConfigSEM = {0, 0};
|
|
||||||
|
|
||||||
struct UserInfo ** UserRecPtr=NULL;
|
struct UserInfo ** UserRecPtr=NULL;
|
||||||
int NumberofUsers=0;
|
int NumberofUsers=0;
|
||||||
|
@ -205,7 +204,6 @@ int MailForInterval = 0;
|
||||||
char zeros[NBMASK]; // For forward bitmask tests
|
char zeros[NBMASK]; // For forward bitmask tests
|
||||||
|
|
||||||
time_t MaintClock; // Time to run housekeeping
|
time_t MaintClock; // Time to run housekeeping
|
||||||
time_t APIClock; // Time to sent to MOLTE's Database
|
|
||||||
|
|
||||||
struct MsgInfo * MsgnotoMsg[100000]; // Message Number to Message Slot List.
|
struct MsgInfo * MsgnotoMsg[100000]; // Message Number to Message Slot List.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,639 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="LinBPQ"
|
||||||
|
ProjectGUID="{3766AA10-C777-4ED8-A83D-F1452DE9B666}"
|
||||||
|
RootNamespace="MailNode"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="0"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="..\CKernel;..\CommonSource;..\CInclude"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;LINBPQ;_USE_32BIT_TIME_T"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="1"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib WS2_32.Lib ..\lib\libconfigd.lib DbgHelp.lib setupapi.lib miniupnpc.lib zlibstat.lib"
|
||||||
|
OutputFile="c:\LINBPQ\$(ProjectName).exe"
|
||||||
|
LinkIncremental="2"
|
||||||
|
IgnoreDefaultLibraryNames=""
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
GenerateMapFile="true"
|
||||||
|
MapFileName="c:\linbpq\linmail.map"
|
||||||
|
SubSystem="1"
|
||||||
|
StackReserveSize="4000000"
|
||||||
|
StackCommitSize="0"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="0"
|
||||||
|
WholeProgramOptimization="1"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="..\CKernel;..\CommonSource;..\CInclude"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;LINBPQ;_USE_32BIT_TIME_T"
|
||||||
|
RuntimeLibrary="0"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib WS2_32.Lib ..\lib\libconfig.lib DbgHelp.lib Setupapi.lib miniupnpc.lib zlibstat.lib"
|
||||||
|
OutputFile="c:\devprogs\bpq32\LinBPQ.exe"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
HeapReserveSize="5000000"
|
||||||
|
StackReserveSize="10000000"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\adif.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\AEAPactor.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\AGWAPI.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\AGWMoncode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\AISCommon.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Alloc.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\APRSCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\APRSIconData.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\APRSStdPages.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\ARDOP.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\base64.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BBSHTMLConfig.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BBSUtilities.c"
|
||||||
|
>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerOutput="0"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
<FileConfiguration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AssemblerOutput="2"
|
||||||
|
ObjectFile="$(IntDir)\"
|
||||||
|
/>
|
||||||
|
</FileConfiguration>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqaxip.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqether.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqhdlc.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BPQINP3.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BPQNRR.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\BPQtoAGW.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\bpqvkiss.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\ChatHTMLConfig.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\cMain.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Cmd.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\CMSAuth.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\CommonCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\compatbits.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\config.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\datadefs.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\DRATS.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\Events.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\FBBRoutines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\FLDigi.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\FreeDATA.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\getopt.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HALDriver.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HanksRT.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HFCommon.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\hid.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Housekeeping.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\HSMODEM.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HTMLCommonCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\HTTPcode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\IPCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\KAMPactor.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\kiss.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\KISSHF.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\L2Code.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\L3Code.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\L4Code.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LinBPQ.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzFind.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\lzhuf32.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzmaDec.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzmaEnc.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\LzmaLib.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mailapi.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailCommands.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailDataDefs.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailRouting.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MailTCP.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MBLRoutines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\md5.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Moncode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\Multicast.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\MULTIPSK.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\NNTPRoutines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nodeapi.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\pibits.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\png.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\png.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngerror.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pnggccrd.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngget.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngmem.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngpread.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngread.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngrio.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngrtran.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngrutil.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngset.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngtrans.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngvcrd.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwio.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwrite.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwtran.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\pngwutil.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\RigControl.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SCSPactor.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SCSTrackeMulti.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SCSTracker.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\SerialPort.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\TelnetV6.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\TNCCode.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\TNCEmulators.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\UIRoutines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\upnp.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\utf8Routines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\UZ7HODrv.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\V4.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\VARA.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\WebMail.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\WINMOR.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\WinRPR.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\CommonSource\WPRoutines.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory="c:\linbpq"
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor="0"
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="NOTTSDESKTOP"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
|
@ -0,0 +1,294 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<ProjectName>LinBPQ</ProjectName>
|
||||||
|
<ProjectGuid>{3766AA10-C777-4ED8-A83D-F1452DE9B666}</ProjectGuid>
|
||||||
|
<RootNamespace>MailNode</RootNamespace>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>NotSet</CharacterSet>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>NotSet</CharacterSet>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>NotSet</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<PlatformToolset>v141</PlatformToolset>
|
||||||
|
<CharacterSet>NotSet</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<_ProjectFileVersion>15.0.28307.799</_ProjectFileVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<OutDir>C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(Configuration)\</OutDir>
|
||||||
|
<IntDir>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
<OutDir>D:\linbpq</OutDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<OutDir>C:\Dev\Msdev2005\$(SolutionName)\$(ProjectName)\$(Configuration)\</OutDir>
|
||||||
|
<IntDir>C:\Dev\Msdev2005\Intermed\$(SolutionName)\$(ProjectName)\$(Configuration)\</IntDir>
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<AdditionalIncludeDirectories>..\CKernel;..\CommonSource;..\CInclude;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;LINBPQ;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
|
<PrecompiledHeader />
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalDependencies>kernel32.lib;WS2_32.Lib;..\lib\libconfigd.lib;DbgHelp.lib;setupapi.lib;miniupnpc.lib;zlibstat.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>c:\LINBPQ\$(ProjectName).exe</OutputFile>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<GenerateMapFile>true</GenerateMapFile>
|
||||||
|
<MapFileName>c:\linbpq\linmail.map</MapFileName>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<StackReserveSize>4000000</StackReserveSize>
|
||||||
|
<StackCommitSize>0</StackCommitSize>
|
||||||
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<AdditionalIncludeDirectories>..\CKernel;..\CommonSource;..\CInclude;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;LINBPQ;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalDependencies>kernel32.lib;WS2_32.Lib;C:\OneDrive\Dev\Source\bpq32\libconfig\x64\Release\libconfig.lib;DbgHelp.lib;setupapi.lib;C:\Dev\Msdev2005\projects\bpq32\CKernel\x64\Debug\miniupnpc.lib;C:\OneDrive\Dev\Source\zlib-1.2.11\contrib\vstudio\vc14\x64\ZlibStatDebug\zlibstat.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>c:\LINBPQ\$(ProjectName).exe</OutputFile>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<GenerateMapFile>true</GenerateMapFile>
|
||||||
|
<MapFileName>c:\linbpq\linmail.map</MapFileName>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<StackReserveSize>4000000</StackReserveSize>
|
||||||
|
<StackCommitSize>0</StackCommitSize>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<AdditionalIncludeDirectories>..\CKernel;..\CommonSource;..\CInclude;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;LINBPQ;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
<PrecompiledHeader />
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalDependencies>kernel32.lib;WS2_32.Lib;..\lib\libconfig.lib;DbgHelp.lib;Setupapi.lib;miniupnpc.lib;zlibstat.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>c:\devprogs\bpq32\LinBPQ.exe</OutputFile>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<HeapReserveSize>5000000</HeapReserveSize>
|
||||||
|
<StackReserveSize>10000000</StackReserveSize>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<TargetMachine>MachineX86</TargetMachine>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<AdditionalIncludeDirectories>..\CKernel;..\CommonSource;..\CInclude;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;LINBPQ;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalDependencies>kernel32.lib;WS2_32.Lib;..\lib\libconfig.lib;DbgHelp.lib;Setupapi.lib;miniupnpc.lib;zlibstat.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<OutputFile>c:\devprogs\bpq32\LinBPQ.exe</OutputFile>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<HeapReserveSize>5000000</HeapReserveSize>
|
||||||
|
<StackReserveSize>10000000</StackReserveSize>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="adif.c" />
|
||||||
|
<ClCompile Include="AEAPactor.c" />
|
||||||
|
<ClCompile Include="AGWAPI.c" />
|
||||||
|
<ClCompile Include="AGWMoncode.c" />
|
||||||
|
<ClCompile Include="AISCommon.c" />
|
||||||
|
<ClCompile Include="Alloc.c" />
|
||||||
|
<ClCompile Include="APRSCode.c" />
|
||||||
|
<ClCompile Include="APRSIconData.c" />
|
||||||
|
<ClCompile Include="APRSStdPages.c" />
|
||||||
|
<ClCompile Include="ARDOP.c" />
|
||||||
|
<ClCompile Include="base64.c" />
|
||||||
|
<ClCompile Include="BBSHTMLConfig.c" />
|
||||||
|
<ClCompile Include="BBSUtilities.c">
|
||||||
|
<AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
</AssemblerOutput>
|
||||||
|
<AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
</AssemblerOutput>
|
||||||
|
<AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">All</AssemblerOutput>
|
||||||
|
<AssemblerOutput Condition="'$(Configuration)|$(Platform)'=='Release|x64'">All</AssemblerOutput>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(IntDir)</ObjectFileName>
|
||||||
|
<ObjectFileName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(IntDir)</ObjectFileName>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqaxip.c" />
|
||||||
|
<ClCompile Include="bpqether.c" />
|
||||||
|
<ClCompile Include="bpqhdlc.c" />
|
||||||
|
<ClCompile Include="BPQINP3.c" />
|
||||||
|
<ClCompile Include="BPQNRR.c" />
|
||||||
|
<ClCompile Include="BPQtoAGW.c" />
|
||||||
|
<ClCompile Include="bpqvkiss.c" />
|
||||||
|
<ClCompile Include="ChatHTMLConfig.c" />
|
||||||
|
<ClCompile Include="cMain.c" />
|
||||||
|
<ClCompile Include="Cmd.c" />
|
||||||
|
<ClCompile Include="CMSAuth.c" />
|
||||||
|
<ClCompile Include="CommonCode.c" />
|
||||||
|
<ClCompile Include="compatbits.c" />
|
||||||
|
<ClCompile Include="config.c" />
|
||||||
|
<ClCompile Include="datadefs.c" />
|
||||||
|
<ClCompile Include="DRATS.c" />
|
||||||
|
<ClCompile Include="Events.c" />
|
||||||
|
<ClCompile Include="FBBRoutines.c" />
|
||||||
|
<ClCompile Include="FLDigi.c" />
|
||||||
|
<ClCompile Include="FreeDATA.c" />
|
||||||
|
<ClCompile Include="getopt.c" />
|
||||||
|
<ClCompile Include="HALDriver.c" />
|
||||||
|
<ClCompile Include="HanksRT.c" />
|
||||||
|
<ClCompile Include="HFCommon.c" />
|
||||||
|
<ClCompile Include="hid.c" />
|
||||||
|
<ClCompile Include="Housekeeping.c" />
|
||||||
|
<ClCompile Include="HSMODEM.c" />
|
||||||
|
<ClCompile Include="HTMLCommonCode.c" />
|
||||||
|
<ClCompile Include="HTTPcode.c" />
|
||||||
|
<ClCompile Include="IPCode.c" />
|
||||||
|
<ClCompile Include="KAMPactor.c" />
|
||||||
|
<ClCompile Include="kiss.c" />
|
||||||
|
<ClCompile Include="KISSHF.c" />
|
||||||
|
<ClCompile Include="L2Code.c" />
|
||||||
|
<ClCompile Include="L3Code.c" />
|
||||||
|
<ClCompile Include="L4Code.c" />
|
||||||
|
<ClCompile Include="LinBPQ.c" />
|
||||||
|
<ClCompile Include="LzFind.c" />
|
||||||
|
<ClCompile Include="lzhuf32.c" />
|
||||||
|
<ClCompile Include="LzmaDec.c" />
|
||||||
|
<ClCompile Include="LzmaEnc.c" />
|
||||||
|
<ClCompile Include="LzmaLib.c" />
|
||||||
|
<ClCompile Include="MailCommands.c" />
|
||||||
|
<ClCompile Include="MailDataDefs.c" />
|
||||||
|
<ClCompile Include="MailRouting.c" />
|
||||||
|
<ClCompile Include="MailTCP.c" />
|
||||||
|
<ClCompile Include="MBLRoutines.c" />
|
||||||
|
<ClCompile Include="md5.c" />
|
||||||
|
<ClCompile Include="Moncode.c" />
|
||||||
|
<ClCompile Include="Multicast.c" />
|
||||||
|
<ClCompile Include="MULTIPSK.c" />
|
||||||
|
<ClCompile Include="NNTPRoutines.c" />
|
||||||
|
<ClCompile Include="pibits.c" />
|
||||||
|
<ClCompile Include="png.c" />
|
||||||
|
<ClCompile Include="pngerror.c" />
|
||||||
|
<ClCompile Include="pnggccrd.c" />
|
||||||
|
<ClCompile Include="pngget.c" />
|
||||||
|
<ClCompile Include="pngmem.c" />
|
||||||
|
<ClCompile Include="pngpread.c" />
|
||||||
|
<ClCompile Include="pngread.c" />
|
||||||
|
<ClCompile Include="pngrio.c" />
|
||||||
|
<ClCompile Include="pngrtran.c" />
|
||||||
|
<ClCompile Include="pngrutil.c" />
|
||||||
|
<ClCompile Include="pngset.c" />
|
||||||
|
<ClCompile Include="pngtrans.c" />
|
||||||
|
<ClCompile Include="pngvcrd.c" />
|
||||||
|
<ClCompile Include="pngwio.c" />
|
||||||
|
<ClCompile Include="pngwrite.c" />
|
||||||
|
<ClCompile Include="pngwtran.c" />
|
||||||
|
<ClCompile Include="pngwutil.c" />
|
||||||
|
<ClCompile Include="RigControl.c" />
|
||||||
|
<ClCompile Include="SCSPactor.c" />
|
||||||
|
<ClCompile Include="SCSTrackeMulti.c" />
|
||||||
|
<ClCompile Include="SCSTracker.c" />
|
||||||
|
<ClCompile Include="SerialPort.c" />
|
||||||
|
<ClCompile Include="TelnetV6.c" />
|
||||||
|
<ClCompile Include="TNCCode.c" />
|
||||||
|
<ClCompile Include="TNCEmulators.c" />
|
||||||
|
<ClCompile Include="UIRoutines.c" />
|
||||||
|
<ClCompile Include="upnp.c" />
|
||||||
|
<ClCompile Include="utf8Routines.c" />
|
||||||
|
<ClCompile Include="UZ7HODrv.c" />
|
||||||
|
<ClCompile Include="V4.c" />
|
||||||
|
<ClCompile Include="VARA.c" />
|
||||||
|
<ClCompile Include="WebMail.c" />
|
||||||
|
<ClCompile Include="WINMOR.c" />
|
||||||
|
<ClCompile Include="WinRPR.c" />
|
||||||
|
<ClCompile Include="WPRoutines.c" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="png.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
|
@ -0,0 +1,327 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="adif.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AEAPactor.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AGWAPI.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AGWMoncode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="AISCommon.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Alloc.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="APRSCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="APRSIconData.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="APRSStdPages.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="ARDOP.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="base64.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BBSHTMLConfig.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BBSUtilities.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqaxip.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqether.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqhdlc.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQINP3.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQNRR.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BPQtoAGW.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="bpqvkiss.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="ChatHTMLConfig.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="cMain.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Cmd.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="CMSAuth.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="CommonCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="compatbits.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="config.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="datadefs.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="DRATS.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Events.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="FBBRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="FLDigi.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="FreeDATA.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HALDriver.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HanksRT.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HFCommon.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="hid.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Housekeeping.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HSMODEM.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HTMLCommonCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="HTTPcode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="IPCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="KAMPactor.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="kiss.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="KISSHF.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="L2Code.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="L3Code.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="L4Code.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LinBPQ.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzFind.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="lzhuf32.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzmaDec.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzmaEnc.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="LzmaLib.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailCommands.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailDataDefs.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailRouting.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MailTCP.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MBLRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="md5.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Moncode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Multicast.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MULTIPSK.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="NNTPRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pibits.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="png.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngerror.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pnggccrd.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngget.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngmem.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngpread.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngread.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngrio.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngrtran.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngrutil.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngset.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngtrans.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngvcrd.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngwio.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngwrite.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngwtran.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="pngwutil.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="RigControl.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SCSPactor.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SCSTrackeMulti.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SCSTracker.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="SerialPort.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="TelnetV6.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="TNCCode.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="TNCEmulators.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="UIRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="upnp.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="utf8Routines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="UZ7HODrv.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="V4.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="VARA.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WebMail.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WINMOR.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WinRPR.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="WPRoutines.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="getopt.c">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="png.h">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
|
@ -141,7 +141,7 @@ struct Country Countries[] =
|
||||||
"HKG", "ASIA", "AS", // Hong Kong Special Administrative Region of China
|
"HKG", "ASIA", "AS", // Hong Kong Special Administrative Region of China
|
||||||
"MAC", "ASIA", "AS", // Macao Special Administrative Region of China
|
"MAC", "ASIA", "AS", // Macao Special Administrative Region of China
|
||||||
"COL", "ASIA", "SA", // Colombia
|
"COL", "ASIA", "SA", // Colombia
|
||||||
// "COM", "SAFR", "AF", // Comoros
|
"COM", "SAFR", "AF", // Comoros
|
||||||
"COG", "CAFR", "AF", // Congo
|
"COG", "CAFR", "AF", // Congo
|
||||||
"COK", "SPAC", "OC", // Cook Islands
|
"COK", "SPAC", "OC", // Cook Islands
|
||||||
"CRI", "CEAM", "NA", // Costa Rica
|
"CRI", "CEAM", "NA", // Costa Rica
|
||||||
|
@ -1317,10 +1317,6 @@ FULLHA:
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
// Log My HA for debugging
|
|
||||||
|
|
||||||
Logprintf(LOG_BBS, conn, '?', "Routing Trace. Check if reached correct area My HA is %s", HRoute);
|
|
||||||
|
|
||||||
// All elements of Helements must match Myelements
|
// All elements of Helements must match Myelements
|
||||||
|
|
||||||
while (MyElements[i] && HElements[i]) // Until one set runs out
|
while (MyElements[i] && HElements[i]) // Until one set runs out
|
||||||
|
@ -1413,9 +1409,6 @@ NOHA:
|
||||||
// So if SendPtoMultiple is set I think I need to find the best depth then send to all with the same depth
|
// So if SendPtoMultiple is set I think I need to find the best depth then send to all with the same depth
|
||||||
// If none are found on HA match drop through.
|
// If none are found on HA match drop through.
|
||||||
|
|
||||||
// But this means a message at the @BBS call will be forwarded without checking the Implied AT. So do that first
|
|
||||||
|
|
||||||
|
|
||||||
if (SendPtoMultiple && Msg->type == 'P')
|
if (SendPtoMultiple && Msg->type == 'P')
|
||||||
{
|
{
|
||||||
struct UserInfo * bestbbs = NULL;
|
struct UserInfo * bestbbs = NULL;
|
||||||
|
@ -1432,16 +1425,6 @@ NOHA:
|
||||||
{
|
{
|
||||||
ForwardingInfo = bbs->ForwardingInfo;
|
ForwardingInfo = bbs->ForwardingInfo;
|
||||||
|
|
||||||
// Check Implied AT
|
|
||||||
|
|
||||||
if ((strcmp(ATBBS, bbs->Call) == 0)) // @BBS = BBS
|
|
||||||
{
|
|
||||||
Logprintf(LOG_BBS, conn, '?', "Routing Trace %s Matches implied AT %s", ATBBS, bbs->Call);
|
|
||||||
|
|
||||||
CheckAndSend(Msg, conn, bbs);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
depth = CheckBBSHElements(Msg, bbs, ForwardingInfo, ATBBS, &HElements[0]);
|
depth = CheckBBSHElements(Msg, bbs, ForwardingInfo, ATBBS, &HElements[0]);
|
||||||
|
|
||||||
if (depth)
|
if (depth)
|
||||||
|
|
|
@ -2656,7 +2656,6 @@ VOID ProcessPOP3ServerMessage(SocketConn * sockptr, char * Buffer, int Len)
|
||||||
// Must be some other coding
|
// Must be some other coding
|
||||||
|
|
||||||
int code = TrytoGuessCode(msgbytes, Len);
|
int code = TrytoGuessCode(msgbytes, Len);
|
||||||
|
|
||||||
UCHAR * UTF = malloc(Len * 3);
|
UCHAR * UTF = malloc(Len * 3);
|
||||||
|
|
||||||
if (code == 437)
|
if (code == 437)
|
||||||
|
@ -2897,8 +2896,6 @@ SocketConn * SMTPConnect(char * Host, int Port, BOOL AMPR, struct MsgInfo * Msg,
|
||||||
sinx.sin_addr.s_addr = INADDR_ANY;
|
sinx.sin_addr.s_addr = INADDR_ANY;
|
||||||
sinx.sin_port = 0;
|
sinx.sin_port = 0;
|
||||||
|
|
||||||
sockptr->Timeout = 0;
|
|
||||||
|
|
||||||
if (bind(sockptr->socket, (LPSOCKADDR) &sinx, addrlen) != 0 )
|
if (bind(sockptr->socket, (LPSOCKADDR) &sinx, addrlen) != 0 )
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
|
@ -3592,6 +3589,7 @@ VOID ProcessPOP3ClientMessage(SocketConn * sockptr, char * Buffer, int Len)
|
||||||
if (sockptr->POP3MsgCount > sockptr->POP3MsgNum++)
|
if (sockptr->POP3MsgCount > sockptr->POP3MsgNum++)
|
||||||
{
|
{
|
||||||
sockprintf(sockptr, "RETR %d", sockptr->POP3MsgNum);
|
sockprintf(sockptr, "RETR %d", sockptr->POP3MsgNum);
|
||||||
|
|
||||||
sockptr->State = WaitingForRETRResponse;
|
sockptr->State = WaitingForRETRResponse;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
12
Moncode.c
12
Moncode.c
|
@ -59,6 +59,7 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
|
|
||||||
#define NODES_SIG 0xFF
|
#define NODES_SIG 0xFF
|
||||||
|
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
UCHAR * DisplayINP3RIF(UCHAR * ptr1, UCHAR * ptr2, unsigned int msglen);
|
UCHAR * DisplayINP3RIF(UCHAR * ptr1, UCHAR * ptr2, unsigned int msglen);
|
||||||
|
|
||||||
char * DISPLAY_NETROM(MESSAGE * ADJBUFFER, UCHAR * Output, int MsgLen);
|
char * DISPLAY_NETROM(MESSAGE * ADJBUFFER, UCHAR * Output, int MsgLen);
|
||||||
|
@ -209,12 +210,7 @@ KC6OAR*>ID:
|
||||||
Port &= 0x7F;
|
Port &= 0x7F;
|
||||||
|
|
||||||
if ((((uint64_t)1 << (Port - 1)) & Mask) == 0) // Check MMASK
|
if ((((uint64_t)1 << (Port - 1)) & Mask) == 0) // Check MMASK
|
||||||
{
|
|
||||||
if (msg->Padding[0] == '[')
|
|
||||||
msg->Padding[0] = 0;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// We now pass Text format monitoring from non-ax25 drivers through this code
|
// We now pass Text format monitoring from non-ax25 drivers through this code
|
||||||
|
@ -539,12 +535,6 @@ KC6OAR*>ID:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (msg->Padding[0] == '[')
|
|
||||||
Output += sprintf((char *)Output, " %s", msg->Padding);
|
|
||||||
|
|
||||||
msg->Padding[0] = 0;
|
|
||||||
|
|
||||||
if (Info)
|
if (Info)
|
||||||
{
|
{
|
||||||
// We have an info frame
|
// We have an info frame
|
||||||
|
|
16
Multicast.c
16
Multicast.c
|
@ -612,16 +612,16 @@ struct MSESSION * FindMSession(unsigned int Key)
|
||||||
|
|
||||||
#define LZMA_STR "\1LZMA"
|
#define LZMA_STR "\1LZMA"
|
||||||
|
|
||||||
UCHAR * LZUncompress(UCHAR * Decoded, size_t Len, size_t * NewLen)
|
UCHAR * LZUncompress(UCHAR * Decoded, int Len, int * NewLen)
|
||||||
{
|
{
|
||||||
unsigned char * buf;
|
unsigned char * buf;
|
||||||
unsigned char inprops[LZMA_PROPS_SIZE];
|
unsigned char inprops[LZMA_PROPS_SIZE];
|
||||||
size_t inlen;
|
size_t inlen;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
size_t rlen = 0;
|
UINT rlen;
|
||||||
size_t outlen;
|
UINT outlen;
|
||||||
|
|
||||||
memcpy(&rlen, &Decoded[5], 4);
|
memcpy(&rlen, &Decoded[5], 4);
|
||||||
|
|
||||||
outlen = ntohl(rlen);
|
outlen = ntohl(rlen);
|
||||||
|
@ -668,8 +668,8 @@ void SaveMulticastMessage(struct MSESSION * MSession)
|
||||||
{
|
{
|
||||||
UCHAR * Decoded = NULL; // Output from Basexxx decode
|
UCHAR * Decoded = NULL; // Output from Basexxx decode
|
||||||
UCHAR * Uncompressed = NULL;
|
UCHAR * Uncompressed = NULL;
|
||||||
size_t DecodedLen; // Length of decoded message
|
int DecodedLen; // Length of decoded message
|
||||||
size_t UncompressedLen; // Length of decompressed message
|
int UncompressedLen; // Length of decompressed message
|
||||||
int ExpectedLen; // From front of Base128 or Base256 message
|
int ExpectedLen; // From front of Base128 or Base256 message
|
||||||
int HddrLen; // Length of Expected Len Header
|
int HddrLen; // Length of Expected Len Header
|
||||||
|
|
||||||
|
@ -1612,7 +1612,7 @@ int MulticastStatusHTML(char * Reply)
|
||||||
if (Sess ==NULL)
|
if (Sess ==NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
Len = sprintf(Reply, "%s", StatusPage);
|
Len = sprintf(Reply, StatusPage);
|
||||||
|
|
||||||
while (Sess)
|
while (Sess)
|
||||||
{
|
{
|
||||||
|
@ -1670,7 +1670,7 @@ int MulticastStatusHTML(char * Reply)
|
||||||
Sess = Sess->Next;
|
Sess = Sess->Next;
|
||||||
}
|
}
|
||||||
|
|
||||||
Len += sprintf(&Reply[Len], "%s", StatusTail);
|
Len += sprintf(&Reply[Len], StatusTail);
|
||||||
|
|
||||||
return Len;
|
return Len;
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,6 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
|
|
||||||
VOID __cdecl Debugprintf(const char * format, ...);
|
VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
VOID ReleaseSock(SOCKET sock);
|
VOID ReleaseSock(SOCKET sock);
|
||||||
void MQTTMessageEvent(void* message);
|
|
||||||
|
|
||||||
struct NNTPRec * FirstNNTPRec = NULL;
|
struct NNTPRec * FirstNNTPRec = NULL;
|
||||||
|
|
||||||
|
@ -353,12 +352,6 @@ int CreateNNTPMessage(char * From, char * To, char * MsgTitle, time_t Date, char
|
||||||
|
|
||||||
BuildNNTPList(Msg); // Build NNTP Groups list
|
BuildNNTPList(Msg); // Build NNTP Groups list
|
||||||
|
|
||||||
#ifndef NOMQTT
|
|
||||||
if (MQTT)
|
|
||||||
MQTTMessageEvent(Msg);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
return CreateSMTPMessageFile(MsgBody, Msg);
|
return CreateSMTPMessageFile(MsgBody, Msg);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,209 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="NodeMapTest"
|
||||||
|
ProjectGUID="{FAF0D3D4-CB63-4E07-9AE2-11A90760023D}"
|
||||||
|
RootNamespace="NodeMapTest"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="2"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="3"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="false"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
CompileAs="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="WS2_32.Lib kernel32.lib $(NoInherit)"
|
||||||
|
OutputFile="c:\devprogs\bpq32\$(ProjectName).exe"
|
||||||
|
LinkIncremental="2"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="1"
|
||||||
|
WholeProgramOptimization="1"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||||
|
RuntimeLibrary="2"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib $(NoInherit)"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\NodeMapTest.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\stdafx.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ReadMe.txt"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
25
RigControl.c
25
RigControl.c
|
@ -1291,7 +1291,7 @@ int Rig_CommandEx(struct RIGPORTINFO * PORT, struct RIGINFO * RIG, TRANSPORTENTR
|
||||||
|
|
||||||
// use text command
|
// use text command
|
||||||
|
|
||||||
Len = sprintf(CmdPtr, "%S", ptr1);
|
Len = sprintf(CmdPtr, ptr1);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case YAESU:
|
case YAESU:
|
||||||
|
@ -3205,7 +3205,7 @@ VOID ReleasePermission(struct RIGINFO *RIG)
|
||||||
while (RIG->PortRecord[i])
|
while (RIG->PortRecord[i])
|
||||||
{
|
{
|
||||||
PortRecord = RIG->PortRecord[i];
|
PortRecord = RIG->PortRecord[i];
|
||||||
PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, (PDATAMESSAGE)3); // Release Perrmission
|
PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, 3); // Release Perrmission
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3235,7 +3235,7 @@ int GetPermissionToChange(struct RIGPORTINFO * PORT, struct RIGINFO *RIG)
|
||||||
// TNC has been asked for permission, and we are waiting respoonse
|
// TNC has been asked for permission, and we are waiting respoonse
|
||||||
// Only SCS pactor returns WaitingForPrmission, so check shouldn't be called on others
|
// Only SCS pactor returns WaitingForPrmission, so check shouldn't be called on others
|
||||||
|
|
||||||
RIG->OKtoChange = (int)(intptr_t)RIG->PortRecord[0]->PORT_EXT_ADDR(6, RIG->PortRecord[0]->PORTCONTROL.PORTNUMBER, (PDATAMESSAGE)2); // Get Ok Flag
|
RIG->OKtoChange = (int)(intptr_t)RIG->PortRecord[0]->PORT_EXT_ADDR(6, RIG->PortRecord[0]->PORTCONTROL.PORTNUMBER, 2); // Get Ok Flag
|
||||||
|
|
||||||
if (RIG->OKtoChange == 1)
|
if (RIG->OKtoChange == 1)
|
||||||
{
|
{
|
||||||
|
@ -3277,7 +3277,7 @@ int GetPermissionToChange(struct RIGPORTINFO * PORT, struct RIGINFO *RIG)
|
||||||
// not waiting for permission, so must be first call of a cycle
|
// not waiting for permission, so must be first call of a cycle
|
||||||
|
|
||||||
if (RIG->PortRecord[0] && RIG->PortRecord[0]->PORT_EXT_ADDR)
|
if (RIG->PortRecord[0] && RIG->PortRecord[0]->PORT_EXT_ADDR)
|
||||||
RIG->WaitingForPermission = (int)(intptr_t)RIG->PortRecord[0]->PORT_EXT_ADDR(6, RIG->PortRecord[0]->PORTCONTROL.PORTNUMBER, (PDATAMESSAGE)1); // Request Perrmission
|
RIG->WaitingForPermission = (int)(intptr_t)RIG->PortRecord[0]->PORT_EXT_ADDR(6, RIG->PortRecord[0]->PORTCONTROL.PORTNUMBER, 1); // Request Perrmission
|
||||||
|
|
||||||
// If it returns zero there is no need to wait.
|
// If it returns zero there is no need to wait.
|
||||||
// Normally SCS Returns True for first call, but returns 0 if Link not running
|
// Normally SCS Returns True for first call, but returns 0 if Link not running
|
||||||
|
@ -3300,7 +3300,7 @@ CheckOtherPorts:
|
||||||
{
|
{
|
||||||
PortRecord = RIG->PortRecord[i];
|
PortRecord = RIG->PortRecord[i];
|
||||||
|
|
||||||
if (PortRecord->PORT_EXT_ADDR && PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, (PDATAMESSAGE)1))
|
if (PortRecord->PORT_EXT_ADDR && PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, 1))
|
||||||
{
|
{
|
||||||
// 1 means can't change - release all
|
// 1 means can't change - release all
|
||||||
|
|
||||||
|
@ -3392,7 +3392,7 @@ VOID DoBandwidthandAntenna(struct RIGINFO *RIG, struct ScanEntry * ptr)
|
||||||
|
|
||||||
RIG->CurrentBandWidth = ptr->Bandwidth;
|
RIG->CurrentBandWidth = ptr->Bandwidth;
|
||||||
|
|
||||||
PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, (PDATAMESSAGE)ptr);
|
PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, ptr);
|
||||||
|
|
||||||
/* if (ptr->Bandwidth == 'R') // Robust Packet
|
/* if (ptr->Bandwidth == 'R') // Robust Packet
|
||||||
PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, 6); // Set Robust Packet
|
PortRecord->PORT_EXT_ADDR(6, PortRecord->PORTCONTROL.PORTNUMBER, 6); // Set Robust Packet
|
||||||
|
@ -8385,7 +8385,7 @@ int ProcessHAMLIBSlaveMessage(SOCKET Sock, struct RIGINFO * RIG, unsigned char *
|
||||||
|
|
||||||
switch (Msg[0])
|
switch (Msg[0])
|
||||||
{
|
{
|
||||||
case 'f': // Get Frequency
|
case 'f': // Get Freqency
|
||||||
|
|
||||||
HLGetFreq(Sock, RIG, sep);
|
HLGetFreq(Sock, RIG, sep);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -8941,7 +8941,7 @@ VOID FLRIGThread(struct RIGPORTINFO * PORT)
|
||||||
setsockopt(PORT->remoteSock, SOL_SOCKET, SO_REUSEADDR, (const char FAR *)&bcopt, 4);
|
setsockopt(PORT->remoteSock, SOL_SOCKET, SO_REUSEADDR, (const char FAR *)&bcopt, 4);
|
||||||
setsockopt(PORT->remoteSock, IPPROTO_TCP, TCP_NODELAY, (const char FAR *)&bcopt, 4);
|
setsockopt(PORT->remoteSock, IPPROTO_TCP, TCP_NODELAY, (const char FAR *)&bcopt, 4);
|
||||||
|
|
||||||
if (connect(PORT->remoteSock,(LPSOCKADDR) &PORT->remoteDest, sizeof(PORT->remoteDest)) == 0)
|
if (connect(PORT->remoteSock,(LPSOCKADDR) &PORT->remoteDest,sizeof(PORT->remoteDest)) == 0)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Connected successful
|
// Connected successful
|
||||||
|
@ -9422,7 +9422,7 @@ return TRUE;
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
//
|
//#include <stdint.h>
|
||||||
//#include <windows.h>
|
//#include <windows.h>
|
||||||
#include <setupapi.h>
|
#include <setupapi.h>
|
||||||
//#include <ddk/hidsdi.h>
|
//#include <ddk/hidsdi.h>
|
||||||
|
@ -9938,10 +9938,14 @@ void ProcessSDRANGELFrame(struct RIGPORTINFO * PORT)
|
||||||
int Length;
|
int Length;
|
||||||
|
|
||||||
char * msg;
|
char * msg;
|
||||||
|
char * rest;
|
||||||
|
|
||||||
struct RIGINFO * RIG;
|
struct RIGINFO * RIG;
|
||||||
char * ptr, * ptr1, * ptr2, * ptr3, * pos;
|
char * ptr, * ptr1, * ptr2, * ptr3, * pos;
|
||||||
|
int Len, TotalLen;
|
||||||
char cmd[80];
|
char cmd[80];
|
||||||
|
char ReqBuf[256];
|
||||||
|
char SendBuff[256];
|
||||||
int chunklength;
|
int chunklength;
|
||||||
int headerlen;
|
int headerlen;
|
||||||
int i, n = 0;
|
int i, n = 0;
|
||||||
|
@ -10328,6 +10332,7 @@ VOID SDRANGELPoll(struct RIGPORTINFO * PORT)
|
||||||
|
|
||||||
struct RIGINFO * RIG = &PORT->Rigs[0];
|
struct RIGINFO * RIG = &PORT->Rigs[0];
|
||||||
int Len, i;
|
int Len, i;
|
||||||
|
char ReqBuf[256];
|
||||||
char SendBuff[256];
|
char SendBuff[256];
|
||||||
//char * SDRANGEL_GETheader = "GET /sdrangel/deviceset/%d/device/settings "
|
//char * SDRANGEL_GETheader = "GET /sdrangel/deviceset/%d/device/settings "
|
||||||
// "HTTP/1.1\nHost: %s\nConnection: keep-alive\n\r\n";
|
// "HTTP/1.1\nHost: %s\nConnection: keep-alive\n\r\n";
|
||||||
|
@ -10374,6 +10379,7 @@ VOID SDRANGELPoll(struct RIGPORTINFO * PORT)
|
||||||
if (GetPermissionToChange(PORT, RIG))
|
if (GetPermissionToChange(PORT, RIG))
|
||||||
{
|
{
|
||||||
char cmd[80];
|
char cmd[80];
|
||||||
|
double freq;
|
||||||
|
|
||||||
if (RIG->RIG_DEBUG)
|
if (RIG->RIG_DEBUG)
|
||||||
Debugprintf("BPQ32 Change Freq to %9.4f", PORT->FreqPtr->Freq);
|
Debugprintf("BPQ32 Change Freq to %9.4f", PORT->FreqPtr->Freq);
|
||||||
|
@ -10445,6 +10451,7 @@ VOID SDRANGELPoll(struct RIGPORTINFO * PORT)
|
||||||
VOID SDRANGELSendCommand(struct RIGPORTINFO * PORT, char * Command, char * Value)
|
VOID SDRANGELSendCommand(struct RIGPORTINFO * PORT, char * Command, char * Value)
|
||||||
{
|
{
|
||||||
int Len, ret;
|
int Len, ret;
|
||||||
|
char ReqBuf[512];
|
||||||
char SendBuff[512];
|
char SendBuff[512];
|
||||||
char ValueString[256] ="";
|
char ValueString[256] ="";
|
||||||
char * SDRANGEL_PATCHheader = "PATCH /sdrangel/deviceset/%d/device/settings "
|
char * SDRANGEL_PATCHheader = "PATCH /sdrangel/deviceset/%d/device/settings "
|
||||||
|
|
24
SCSPactor.c
24
SCSPactor.c
|
@ -1972,7 +1972,7 @@ VOID SCSPoll(int Port)
|
||||||
}
|
}
|
||||||
|
|
||||||
Poll[3] = 0; // Data?
|
Poll[3] = 0; // Data?
|
||||||
TNC->Streams[Stream].bytesTXed += datalen;
|
TNC->Streams[Stream].BytesTXed += datalen;
|
||||||
|
|
||||||
Poll[4] = datalen - 1;
|
Poll[4] = datalen - 1;
|
||||||
memcpy(&Poll[5], Buffer, datalen);
|
memcpy(&Poll[5], Buffer, datalen);
|
||||||
|
@ -2324,7 +2324,7 @@ void SCSTryToSendDATA(struct TNCINFO * TNC, int Stream)
|
||||||
}
|
}
|
||||||
|
|
||||||
Poll[3] = 0; // Data
|
Poll[3] = 0; // Data
|
||||||
STREAM->bytesTXed += datalen;
|
STREAM->BytesTXed += datalen;
|
||||||
|
|
||||||
Poll[4] = datalen - 1;
|
Poll[4] = datalen - 1;
|
||||||
memcpy(&Poll[5], Buffer, datalen);
|
memcpy(&Poll[5], Buffer, datalen);
|
||||||
|
@ -2893,7 +2893,7 @@ VOID ProcessIncomingCall(struct TNCINFO * TNC, struct STREAMINFO * STREAM, int S
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// Make sure app is available
|
// Make sure app is available
|
||||||
|
@ -3034,7 +3034,7 @@ VOID ProcessIncomingCall(struct TNCINFO * TNC, struct STREAMINFO * STREAM, int S
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
||||||
|
@ -3402,7 +3402,7 @@ VOID ProcessDEDFrame(struct TNCINFO * TNC, UCHAR * Msg, int framelen)
|
||||||
{
|
{
|
||||||
if (TNC->TXBuffer[6]== 'T') // TX count Status
|
if (TNC->TXBuffer[6]== 'T') // TX count Status
|
||||||
{
|
{
|
||||||
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %s", TNC->Streams[Stream].bytesRXed, TNC->Streams[Stream].bytesTXed, Buffer);
|
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %s", TNC->Streams[Stream].BytesRXed, TNC->Streams[Stream].BytesTXed, Buffer);
|
||||||
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -3501,7 +3501,7 @@ VOID ProcessDEDFrame(struct TNCINFO * TNC, UCHAR * Msg, int framelen)
|
||||||
STREAM->Connected = TRUE; // Subsequent data to data channel
|
STREAM->Connected = TRUE; // Subsequent data to data channel
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = 0;
|
||||||
|
|
||||||
// Stop Scanner
|
// Stop Scanner
|
||||||
|
|
||||||
|
@ -3897,7 +3897,7 @@ VOID ProcessDEDFrame(struct TNCINFO * TNC, UCHAR * Msg, int framelen)
|
||||||
if (buffptr == NULL) return; // No buffers, so ignore
|
if (buffptr == NULL) return; // No buffers, so ignore
|
||||||
|
|
||||||
buffptr->Len = Msg[4] + 1; // Length
|
buffptr->Len = Msg[4] + 1; // Length
|
||||||
TNC->Streams[Stream].bytesRXed += (int)buffptr->Len;
|
TNC->Streams[Stream].BytesRXed += (int)buffptr->Len;
|
||||||
memcpy(buffptr->Data, &Msg[5], buffptr->Len);
|
memcpy(buffptr->Data, &Msg[5], buffptr->Len);
|
||||||
|
|
||||||
WritetoTrace(TNC, &Msg[5], (int)buffptr->Len);
|
WritetoTrace(TNC, &Msg[5], (int)buffptr->Len);
|
||||||
|
@ -4297,22 +4297,16 @@ VOID PTCSuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
||||||
{
|
{
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
||||||
|
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Interlocked");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
|
|
||||||
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
||||||
sprintf(STREAM->CmdSet, "I%s\r", "SCSPTC"); // Should prevent connects
|
sprintf(STREAM->CmdSet, "I%s\r", "SCSPTC"); // Should prevent connects
|
||||||
|
|
||||||
// Debugprintf("SCS Pactor CMDSet = %s", STREAM->CmdSet);
|
Debugprintf("SCS Pactor CMDSet = %s", STREAM->CmdSet);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID PTCReleasePort(struct TNCINFO * TNC)
|
VOID PTCReleasePort(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
||||||
|
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
|
|
||||||
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
||||||
|
|
||||||
if (TNC->UseAPPLCallsforPactor && TNC->RIG && TNC->RIG != &TNC->DummyRig
|
if (TNC->UseAPPLCallsforPactor && TNC->RIG && TNC->RIG != &TNC->DummyRig
|
||||||
|
@ -4321,7 +4315,7 @@ VOID PTCReleasePort(struct TNCINFO * TNC)
|
||||||
else
|
else
|
||||||
sprintf(STREAM->CmdSet, "I%s\r", TNC->NodeCall);
|
sprintf(STREAM->CmdSet, "I%s\r", TNC->NodeCall);
|
||||||
|
|
||||||
// Debugprintf("SCS Pactor CMDSet = %s", STREAM->CmdSet);
|
Debugprintf("SCS Pactor CMDSet = %s", STREAM->CmdSet);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,7 @@ extern UCHAR BPQDirectory[];
|
||||||
static RECT Rect;
|
static RECT Rect;
|
||||||
|
|
||||||
VOID __cdecl Debugprintf(const char * format, ...);
|
VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
BOOL KAMStartPort(struct PORTCONTROL * PORT);
|
BOOL KAMStartPort(struct PORTCONTROL * PORT);
|
||||||
BOOL KAMStopPort(struct PORTCONTROL * PORT);
|
BOOL KAMStopPort(struct PORTCONTROL * PORT);
|
||||||
|
|
||||||
|
@ -824,7 +825,7 @@ static VOID DEDPoll(int Port)
|
||||||
}
|
}
|
||||||
|
|
||||||
Poll[1] = 0; // Data
|
Poll[1] = 0; // Data
|
||||||
TNC->Streams[Stream].bytesTXed += datalen;
|
TNC->Streams[Stream].BytesTXed += datalen;
|
||||||
|
|
||||||
Poll[2] = datalen - 1;
|
Poll[2] = datalen - 1;
|
||||||
memcpy(&Poll[3], Buffer, datalen);
|
memcpy(&Poll[3], Buffer, datalen);
|
||||||
|
@ -1507,7 +1508,7 @@ static VOID ProcessDEDFrame(struct TNCINFO * TNC)
|
||||||
STREAM->Connected = TRUE; // Subsequent data to data channel
|
STREAM->Connected = TRUE; // Subsequent data to data channel
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
|
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = 0;
|
||||||
|
|
||||||
memcpy(MHCall, Call, 9);
|
memcpy(MHCall, Call, 9);
|
||||||
MHCall[9] = 0;
|
MHCall[9] = 0;
|
||||||
|
@ -1676,7 +1677,7 @@ static VOID ProcessDEDFrame(struct TNCINFO * TNC)
|
||||||
if (buffptr == NULL) return; // No buffers, so ignore
|
if (buffptr == NULL) return; // No buffers, so ignore
|
||||||
|
|
||||||
buffptr->Len = framelen; // Length
|
buffptr->Len = framelen; // Length
|
||||||
TNC->Streams[Stream].bytesRXed += buffptr->Len;
|
TNC->Streams[Stream].BytesRXed += buffptr->Len;
|
||||||
memcpy(buffptr->Data, Msg, buffptr->Len);
|
memcpy(buffptr->Data, Msg, buffptr->Len);
|
||||||
|
|
||||||
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&TNC->Streams[Stream].PACTORtoBPQ_Q, buffptr);
|
||||||
|
|
17
SCSTracker.c
17
SCSTracker.c
|
@ -52,6 +52,7 @@ extern char LOC[];
|
||||||
static RECT Rect;
|
static RECT Rect;
|
||||||
|
|
||||||
VOID __cdecl Debugprintf(const char * format, ...);
|
VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
|
|
||||||
char NodeCall[11]; // Nodecall, Null Terminated
|
char NodeCall[11]; // Nodecall, Null Terminated
|
||||||
|
|
||||||
|
@ -108,9 +109,6 @@ VOID TRKSuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
||||||
{
|
{
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
||||||
|
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Interlocked");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
|
|
||||||
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
||||||
sprintf(STREAM->CmdSet, "\1\1\1IDSPTNC");
|
sprintf(STREAM->CmdSet, "\1\1\1IDSPTNC");
|
||||||
}
|
}
|
||||||
|
@ -119,9 +117,6 @@ VOID TRKReleasePort(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
||||||
|
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
|
|
||||||
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
STREAM->CmdSet = STREAM->CmdSave = zalloc(100);
|
||||||
sprintf(STREAM->CmdSet, "\1\1\1I%s", TNC->NodeCall);
|
sprintf(STREAM->CmdSet, "\1\1\1I%s", TNC->NodeCall);
|
||||||
}
|
}
|
||||||
|
@ -1266,7 +1261,7 @@ reinit:
|
||||||
}
|
}
|
||||||
|
|
||||||
Poll[1] = 0; // Data
|
Poll[1] = 0; // Data
|
||||||
TNC->Streams[Stream].bytesTXed += datalen;
|
TNC->Streams[Stream].BytesTXed += datalen;
|
||||||
|
|
||||||
Poll[2] = datalen - 1;
|
Poll[2] = datalen - 1;
|
||||||
memcpy(&Poll[3], Buffer, datalen);
|
memcpy(&Poll[3], Buffer, datalen);
|
||||||
|
@ -1887,7 +1882,7 @@ VOID TrkProcessDEDFrame(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
if (TNC->TXBuffer[4]== 'T') // TX count Status
|
if (TNC->TXBuffer[4]== 'T') // TX count Status
|
||||||
{
|
{
|
||||||
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %s", TNC->Streams[Stream].bytesRXed, TNC->Streams[Stream].bytesTXed, Buffer);
|
sprintf(TNC->WEB_TRAFFIC, "RX %d TX %d ACKED %s", TNC->Streams[Stream].BytesRXed, TNC->Streams[Stream].BytesTXed, Buffer);
|
||||||
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
SetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
TNC->WEB_CHANGED = TRUE;
|
TNC->WEB_CHANGED = TRUE;
|
||||||
return;
|
return;
|
||||||
|
@ -2026,7 +2021,7 @@ VOID TrkProcessDEDFrame(struct TNCINFO * TNC)
|
||||||
STREAM->Connected = TRUE; // Subsequent data to data channel
|
STREAM->Connected = TRUE; // Subsequent data to data channel
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = 0;
|
||||||
|
|
||||||
if (TNC->SlowTimer)
|
if (TNC->SlowTimer)
|
||||||
Debugprintf("RP Incoming call to APPLCALL completed");
|
Debugprintf("RP Incoming call to APPLCALL completed");
|
||||||
|
@ -2174,7 +2169,7 @@ VOID TrkProcessDEDFrame(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// Make sure app is available
|
// Make sure app is available
|
||||||
|
@ -2384,7 +2379,7 @@ VOID TrkProcessDEDFrame(struct TNCINFO * TNC)
|
||||||
if (buffptr == NULL) return; // No buffers, so ignore
|
if (buffptr == NULL) return; // No buffers, so ignore
|
||||||
|
|
||||||
buffptr->Len = framelen; // Length
|
buffptr->Len = framelen; // Length
|
||||||
TNC->Streams[Stream].bytesRXed += (int)buffptr->Len;
|
TNC->Streams[Stream].BytesRXed += (int)buffptr->Len;
|
||||||
memcpy(buffptr->Data, Msg, buffptr->Len);
|
memcpy(buffptr->Data, Msg, buffptr->Len);
|
||||||
|
|
||||||
WritetoTrace(TNC, Msg, (int)buffptr->Len);
|
WritetoTrace(TNC, Msg, (int)buffptr->Len);
|
||||||
|
|
|
@ -142,7 +142,7 @@ loop:
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL SerialReadConfigFile(int Port, int ProcLine(char * buf, int Port))
|
BOOL SerialReadConfigFile(int Port, int ProcLine())
|
||||||
{
|
{
|
||||||
char buf[256],errbuf[256];
|
char buf[256],errbuf[256];
|
||||||
|
|
||||||
|
@ -402,7 +402,7 @@ ok:
|
||||||
UCHAR * data = &buffptr->Data[0];
|
UCHAR * data = &buffptr->Data[0];
|
||||||
STREAM->FramesQueued--;
|
STREAM->FramesQueued--;
|
||||||
txlen = (int)buffptr->Len;
|
txlen = (int)buffptr->Len;
|
||||||
STREAM->bytesTXed += txlen;
|
STREAM->BytesTXed += txlen;
|
||||||
|
|
||||||
bytes=SerialSendData(TNC, data, txlen);
|
bytes=SerialSendData(TNC, data, txlen);
|
||||||
WritetoTrace(TNC, data, txlen);
|
WritetoTrace(TNC, data, txlen);
|
||||||
|
@ -491,7 +491,7 @@ ok:
|
||||||
|
|
||||||
bytes=SerialSendData(TNC, TXMsg, txlen);
|
bytes=SerialSendData(TNC, TXMsg, txlen);
|
||||||
TNC->Streams[Stream].BytesOutstanding += bytes; // So flow control works - will be updated by BUFFER response
|
TNC->Streams[Stream].BytesOutstanding += bytes; // So flow control works - will be updated by BUFFER response
|
||||||
STREAM->bytesTXed += bytes;
|
STREAM->BytesTXed += bytes;
|
||||||
// WritetoTrace(TNC, &buff->L2DATA[0], txlen);
|
// WritetoTrace(TNC, &buff->L2DATA[0], txlen);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -735,7 +735,7 @@ VOID SerialReleasePort(struct TNCINFO * TNC)
|
||||||
VOID * SerialExtInit(EXTPORTDATA * PortEntry)
|
VOID * SerialExtInit(EXTPORTDATA * PortEntry)
|
||||||
{
|
{
|
||||||
int port;
|
int port;
|
||||||
char Msg[512];
|
char Msg[255];
|
||||||
char * ptr;
|
char * ptr;
|
||||||
struct TNCINFO * TNC;
|
struct TNCINFO * TNC;
|
||||||
char * TempScript;
|
char * TempScript;
|
||||||
|
|
|
@ -27,16 +27,6 @@ along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
|
||||||
|
|
||||||
#include "CHeaders.h"
|
#include "CHeaders.h"
|
||||||
|
|
||||||
typedef struct _TCMDX
|
|
||||||
{
|
|
||||||
char String[12]; // COMMAND STRING
|
|
||||||
UCHAR CMDLEN; // SIGNIFICANT LENGTH
|
|
||||||
VOID (* CMDPROC)(struct TNCDATA * TNC, char * Tail, struct _TCMDX * CMD);// COMMAND PROCESSOR
|
|
||||||
size_t CMDFLAG; // FLAG/VALUE Offset
|
|
||||||
|
|
||||||
} TCMDX;
|
|
||||||
|
|
||||||
|
|
||||||
#define LF 10
|
#define LF 10
|
||||||
#define CR 13
|
#define CR 13
|
||||||
|
|
||||||
|
@ -858,7 +848,7 @@ int LocalSessionState(int stream, int * state, int * change, BOOL ACK)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
VOID ONOFF(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID ONOFF(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS COMMANDS WITH ON/OFF PARAM
|
// PROCESS COMMANDS WITH ON/OFF PARAM
|
||||||
|
|
||||||
|
@ -907,7 +897,7 @@ VOID ONOFF(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
VOID ONOFF_CONOK(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID ONOFF_CONOK(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
||||||
|
|
||||||
|
@ -921,7 +911,7 @@ VOID ONOFF_CONOK(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
SetAppl(TNCStream->BPQPort, TNC->APPLFLAGS, 0);
|
SetAppl(TNCStream->BPQPort, TNC->APPLFLAGS, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SETMYCALL(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID SETMYCALL(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char Response[80];
|
char Response[80];
|
||||||
int len;
|
int len;
|
||||||
|
@ -945,7 +935,7 @@ VOID SETMYCALL(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
|
|
||||||
SENDREPLY(TNC, Response, len);
|
SENDREPLY(TNC, Response, len);
|
||||||
}
|
}
|
||||||
VOID CTEXTCMD(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID CTEXTCMD(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char Response[256];
|
char Response[256];
|
||||||
int len, n;
|
int len, n;
|
||||||
|
@ -973,10 +963,10 @@ VOID CTEXTCMD(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
SENDREPLY(TNC, Response, len);
|
SENDREPLY(TNC, Response, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID BTEXT(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID BTEXT(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
VOID VALUE(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID VALUE(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS COMMANDS WITH decimal value
|
// PROCESS COMMANDS WITH decimal value
|
||||||
|
|
||||||
|
@ -1005,7 +995,7 @@ VOID VALUE(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
SENDREPLY(TNC, Response, len);
|
SENDREPLY(TNC, Response, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID VALHEX(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID VALHEX(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// PROCESS COMMANDS WITH decimal value
|
// PROCESS COMMANDS WITH decimal value
|
||||||
|
|
||||||
|
@ -1042,7 +1032,7 @@ VOID VALHEX(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
SENDREPLY(TNC, Response, len);
|
SENDREPLY(TNC, Response, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID APPL_VALHEX(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID APPL_VALHEX(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
int ApplNum = 1;
|
int ApplNum = 1;
|
||||||
UINT APPLMASK;
|
UINT APPLMASK;
|
||||||
|
@ -1071,7 +1061,7 @@ VOID APPL_VALHEX(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
memcpy(TNC->MYCALL, GetApplCall(ApplNum), 10);
|
memcpy(TNC->MYCALL, GetApplCall(ApplNum), 10);
|
||||||
|
|
||||||
}
|
}
|
||||||
VOID CSWITCH(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID CSWITCH(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
char Response[80];
|
char Response[80];
|
||||||
int len;
|
int len;
|
||||||
|
@ -1082,12 +1072,12 @@ VOID CSWITCH(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
CONNECTTONODE(TNC);
|
CONNECTTONODE(TNC);
|
||||||
|
|
||||||
}
|
}
|
||||||
VOID CONMODE(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID CONMODE(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
SENDREPLY(TNC, CMDMSG, 4);
|
SENDREPLY(TNC, CMDMSG, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID TNCCONV(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID TNCCONV(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
||||||
|
|
||||||
|
@ -1095,7 +1085,7 @@ VOID TNCCONV(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
TNCStream->MODEFLAG &= ~(COMMAND+TRANS);
|
TNCStream->MODEFLAG &= ~(COMMAND+TRANS);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID TNCNODE(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID TNCNODE(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// CONNECT TO NODE
|
// CONNECT TO NODE
|
||||||
|
|
||||||
|
@ -1109,7 +1099,7 @@ VOID TNCNODE(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
CONNECTTONODE(TNC);
|
CONNECTTONODE(TNC);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID CStatus(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID CStatus(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
||||||
|
|
||||||
|
@ -1146,7 +1136,7 @@ VOID CStatus(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VOID TNCCONNECT(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID TNCCONNECT(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
||||||
|
|
||||||
|
@ -1189,7 +1179,7 @@ VOID TNCCONNECT(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
SENDPACKET(TNC); // Will now go to node
|
SENDPACKET(TNC); // Will now go to node
|
||||||
|
|
||||||
}
|
}
|
||||||
VOID TNCDISC(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID TNCDISC(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
||||||
|
|
||||||
|
@ -1204,7 +1194,7 @@ VOID READCHANGE(int Stream)
|
||||||
LocalSessionState(Stream, &dummy, &dummy, TRUE);
|
LocalSessionState(Stream, &dummy, &dummy, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID TNCRELEASE(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID TNCRELEASE(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
ReturntoNode(TNC->BPQPort);
|
ReturntoNode(TNC->BPQPort);
|
||||||
|
|
||||||
|
@ -1213,7 +1203,7 @@ VOID TNCRELEASE(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
|
|
||||||
SENDREPLY(TNC, CMDMSG, 4);
|
SENDREPLY(TNC, CMDMSG, 4);
|
||||||
}
|
}
|
||||||
VOID TNCTRANS(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
VOID TNCTRANS(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
struct TNC2StreamInfo * TNCStream = TNC->TNC2Stream[TNC->TXStream];
|
||||||
|
|
||||||
|
@ -1225,7 +1215,7 @@ VOID TNCTRANS(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
TNCStream->MODEFLAG |= TRANS;
|
TNCStream->MODEFLAG |= TRANS;
|
||||||
TNCStream->MODEFLAG &= ~(COMMAND+CONV);
|
TNCStream->MODEFLAG &= ~(COMMAND+CONV);
|
||||||
}
|
}
|
||||||
static VOID TNCRESTART(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
static VOID TNCRESTART(struct TNCDATA * TNC)
|
||||||
{
|
{
|
||||||
// REINITIALISE CHANNEL
|
// REINITIALISE CHANNEL
|
||||||
|
|
||||||
|
@ -1253,12 +1243,12 @@ static VOID TNCRESTART(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static VOID TNCUNPROTOCMD(struct TNCDATA * TNC, char * Tail, TCMDX * CMD)
|
static VOID TNCUNPROTOCMD(struct TNCDATA * TNC, char * Tail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TCMDX TNCCOMMANDLIST[] =
|
CMDX TNCCOMMANDLIST[] =
|
||||||
{
|
{
|
||||||
"AUTOLF ",2, ONOFF, offsetof(struct TNCDATA, AUTOLF),
|
"AUTOLF ",2, ONOFF, offsetof(struct TNCDATA, AUTOLF),
|
||||||
"BBSMON ",6, ONOFF, offsetof(struct TNCDATA, BBSMON),
|
"BBSMON ",6, ONOFF, offsetof(struct TNCDATA, BBSMON),
|
||||||
|
@ -1311,7 +1301,7 @@ TCMDX TNCCOMMANDLIST[] =
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int NUMBEROFTNCCOMMANDS = sizeof(TNCCOMMANDLIST)/sizeof(TCMDX);
|
int NUMBEROFTNCCOMMANDS = sizeof(TNCCOMMANDLIST)/sizeof(CMDX);
|
||||||
|
|
||||||
/*NEWVALUE DW 0
|
/*NEWVALUE DW 0
|
||||||
HEXFLAG DB 0
|
HEXFLAG DB 0
|
||||||
|
@ -2585,7 +2575,7 @@ VOID TNCCOMMAND(struct TNCDATA * TNC)
|
||||||
|
|
||||||
char * ptr, * ptr1, * ptr2;
|
char * ptr, * ptr1, * ptr2;
|
||||||
int n;
|
int n;
|
||||||
TCMDX * CMD;
|
CMDX * CMD;
|
||||||
|
|
||||||
*(--TNC->CURSOR) = 0;
|
*(--TNC->CURSOR) = 0;
|
||||||
|
|
||||||
|
@ -2663,8 +2653,11 @@ VOID TNCCOMMAND(struct TNCDATA * TNC)
|
||||||
}
|
}
|
||||||
|
|
||||||
CMD++;
|
CMD++;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SENDREPLY(TNC, WHATMSG, 8);
|
SENDREPLY(TNC, WHATMSG, 8);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -4933,7 +4926,6 @@ int STATUSPOLL(struct TNCDATA * TNC, struct StreamInfo * Channel)
|
||||||
|
|
||||||
int State, Change, i;
|
int State, Change, i;
|
||||||
char WorkString[256];
|
char WorkString[256];
|
||||||
char ConMsg[64];
|
|
||||||
|
|
||||||
if (TNC->MSGCHANNEL == 0) // Monitor Chan
|
if (TNC->MSGCHANNEL == 0) // Monitor Chan
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -4949,7 +4941,7 @@ int STATUSPOLL(struct TNCDATA * TNC, struct StreamInfo * Channel)
|
||||||
{
|
{
|
||||||
// DISCONNECTED
|
// DISCONNECTED
|
||||||
|
|
||||||
i = sprintf(ConMsg, "\x3(%d) DISCONNECTED fm 0:SWITCH\r", TNC->MSGCHANNEL);
|
i = sprintf(CONMSG, "\x3(%d) DISCONNECTED fm 0:SWITCH\r", TNC->MSGCHANNEL);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -4958,11 +4950,11 @@ int STATUSPOLL(struct TNCDATA * TNC, struct StreamInfo * Channel)
|
||||||
|
|
||||||
GetCallsign(Channel->BPQStream, WorkString);
|
GetCallsign(Channel->BPQStream, WorkString);
|
||||||
strlop(WorkString, ' ');
|
strlop(WorkString, ' ');
|
||||||
i = sprintf(ConMsg, "\x3(%d) CONNECTED to %s\r", TNC->MSGCHANNEL, WorkString);
|
i = sprintf(CONMSG, "\x3(%d) CONNECTED to %s\r", TNC->MSGCHANNEL, WorkString);
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
SENDCMDREPLY(TNC, ConMsg, i);
|
SENDCMDREPLY(TNC, CONMSG, i);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
31
TelnetV6.c
31
TelnetV6.c
|
@ -127,6 +127,7 @@ static HMENU hMenu, hPopMenu, hPopMenu2, hPopMenu3; // handle of menu
|
||||||
|
|
||||||
static int ProcessLine(char * buf, int Port);
|
static int ProcessLine(char * buf, int Port);
|
||||||
VOID __cdecl Debugprintf(const char * format, ...);
|
VOID __cdecl Debugprintf(const char * format, ...);
|
||||||
|
char * strlop(char * buf, char delim);
|
||||||
|
|
||||||
|
|
||||||
int DisplaySessions(struct TNCINFO * TNC);
|
int DisplaySessions(struct TNCINFO * TNC);
|
||||||
|
@ -2381,7 +2382,7 @@ nosocks:
|
||||||
{
|
{
|
||||||
char logmsg[120];
|
char logmsg[120];
|
||||||
sprintf(logmsg,"%d Disconnected. Bytes Sent = %d Bytes Received %d\n",
|
sprintf(logmsg,"%d Disconnected. Bytes Sent = %d Bytes Received %d\n",
|
||||||
sockptr->Number, STREAM->bytesTXed, STREAM->bytesRXed);
|
sockptr->Number, STREAM->BytesTXed, STREAM->BytesRXed);
|
||||||
|
|
||||||
WriteLog (logmsg);
|
WriteLog (logmsg);
|
||||||
}
|
}
|
||||||
|
@ -2406,7 +2407,7 @@ nosocks:
|
||||||
{
|
{
|
||||||
char logmsg[120];
|
char logmsg[120];
|
||||||
sprintf(logmsg,"%d Disconnected. Bytes Sent = %d Bytes Received %d Time %d Seconds\r\n",
|
sprintf(logmsg,"%d Disconnected. Bytes Sent = %d Bytes Received %d Time %d Seconds\r\n",
|
||||||
sockptr->Number, STREAM->bytesTXed, STREAM->bytesRXed, (int)(time(NULL) - sockptr->ConnectTime));
|
sockptr->Number, STREAM->BytesTXed, STREAM->BytesRXed, (int)(time(NULL) - sockptr->ConnectTime));
|
||||||
|
|
||||||
WriteCMSLog (logmsg);
|
WriteCMSLog (logmsg);
|
||||||
}
|
}
|
||||||
|
@ -2414,7 +2415,7 @@ nosocks:
|
||||||
// Don't report if Internet down unless ReportRelayTraffic set)
|
// Don't report if Internet down unless ReportRelayTraffic set)
|
||||||
|
|
||||||
if (sockptr->RelaySession == FALSE || TCP->ReportRelayTraffic)
|
if (sockptr->RelaySession == FALSE || TCP->ReportRelayTraffic)
|
||||||
SendWL2KSessionRecord(sockptr->ADIF, STREAM->bytesTXed, STREAM->bytesRXed);
|
SendWL2KSessionRecord(sockptr->ADIF, STREAM->BytesTXed, STREAM->BytesRXed);
|
||||||
|
|
||||||
WriteADIFRecord(sockptr->ADIF);
|
WriteADIFRecord(sockptr->ADIF);
|
||||||
|
|
||||||
|
@ -3284,7 +3285,7 @@ int Socket_Accept(struct TNCINFO * TNC, SOCKET SocketId, int Port)
|
||||||
sockptr->Keepalive = FALSE;
|
sockptr->Keepalive = FALSE;
|
||||||
sockptr->UTF8 = 0;
|
sockptr->UTF8 = 0;
|
||||||
|
|
||||||
TNC->Streams[n].bytesRXed = TNC->Streams[n].bytesTXed = 0;
|
TNC->Streams[n].BytesRXed = TNC->Streams[n].BytesTXed = 0;
|
||||||
TNC->Streams[n].FramesQueued = 0;
|
TNC->Streams[n].FramesQueued = 0;
|
||||||
|
|
||||||
sockptr->HTTPMode = FALSE;
|
sockptr->HTTPMode = FALSE;
|
||||||
|
@ -3833,7 +3834,7 @@ MsgLoop:
|
||||||
|
|
||||||
// Normal Data State
|
// Normal Data State
|
||||||
|
|
||||||
STREAM->bytesRXed += MsgLen;
|
STREAM->BytesRXed += MsgLen;
|
||||||
SendIndex = 0;
|
SendIndex = 0;
|
||||||
|
|
||||||
// Line could be up to 500 chars if coming from a program rather than an interative user
|
// Line could be up to 500 chars if coming from a program rather than an interative user
|
||||||
|
@ -3985,7 +3986,7 @@ MsgLoop:
|
||||||
|
|
||||||
if (ctlen > 0) send(sock, ct, ctlen, 0);
|
if (ctlen > 0) send(sock, ct, ctlen, 0);
|
||||||
|
|
||||||
STREAM->bytesTXed = ctlen;
|
STREAM->BytesTXed = ctlen;
|
||||||
|
|
||||||
if (LogEnabled)
|
if (LogEnabled)
|
||||||
{
|
{
|
||||||
|
@ -4066,7 +4067,7 @@ int DataSocket_ReadRelay(struct TNCINFO * TNC, struct ConnectionInfo * sockptr,
|
||||||
MsgPtr = &sockptr->InputBuffer[0];
|
MsgPtr = &sockptr->InputBuffer[0];
|
||||||
InputLen = sockptr->InputLen;
|
InputLen = sockptr->InputLen;
|
||||||
|
|
||||||
STREAM->bytesRXed += InputLen;
|
STREAM->BytesRXed += InputLen;
|
||||||
|
|
||||||
if (sockptr->LoginState == 2)
|
if (sockptr->LoginState == 2)
|
||||||
{
|
{
|
||||||
|
@ -4076,7 +4077,7 @@ int DataSocket_ReadRelay(struct TNCINFO * TNC, struct ConnectionInfo * sockptr,
|
||||||
|
|
||||||
// Queue to Node. Data may arrive it large quatities, possibly exceeding node buffer capacity
|
// Queue to Node. Data may arrive it large quatities, possibly exceeding node buffer capacity
|
||||||
|
|
||||||
STREAM->bytesRXed += InputLen;
|
STREAM->BytesRXed += InputLen;
|
||||||
|
|
||||||
if (sockptr->FromHostBuffPutptr + InputLen > sockptr->FromHostBufferSize)
|
if (sockptr->FromHostBuffPutptr + InputLen > sockptr->FromHostBufferSize)
|
||||||
{
|
{
|
||||||
|
@ -4346,7 +4347,7 @@ int DataSocket_ReadSync(struct TNCINFO * TNC, struct ConnectionInfo * sockptr, S
|
||||||
InputLen = sockptr->InputLen;
|
InputLen = sockptr->InputLen;
|
||||||
MsgPtr[InputLen] = 0;
|
MsgPtr[InputLen] = 0;
|
||||||
|
|
||||||
STREAM->bytesRXed += InputLen;
|
STREAM->BytesRXed += InputLen;
|
||||||
|
|
||||||
if (sockptr->LoginState == 0) // Initial connection
|
if (sockptr->LoginState == 0) // Initial connection
|
||||||
{
|
{
|
||||||
|
@ -4494,7 +4495,7 @@ MsgLoop:
|
||||||
|
|
||||||
// Queue to Node. Data may arrive it large quantities, possibly exceeding node buffer capacity
|
// Queue to Node. Data may arrive it large quantities, possibly exceeding node buffer capacity
|
||||||
|
|
||||||
STREAM->bytesRXed += InputLen;
|
STREAM->BytesRXed += InputLen;
|
||||||
BuffertoNode(sockptr, MsgPtr, InputLen);
|
BuffertoNode(sockptr, MsgPtr, InputLen);
|
||||||
sockptr->InputLen = 0;
|
sockptr->InputLen = 0;
|
||||||
|
|
||||||
|
@ -4676,7 +4677,7 @@ MsgLoop:
|
||||||
|
|
||||||
if (strstr(MsgPtr, "Password :"))
|
if (strstr(MsgPtr, "Password :"))
|
||||||
{
|
{
|
||||||
// Send "CMSTelnet" + gateway callsign + frequency + emission type if info is available
|
// Send “CMSTelnet” + gateway callsign + frequency + emission type if info is available
|
||||||
|
|
||||||
TRANSPORTENTRY * Sess1 = TNC->PortRecord->ATTACHEDSESSIONS[Stream];
|
TRANSPORTENTRY * Sess1 = TNC->PortRecord->ATTACHEDSESSIONS[Stream];
|
||||||
TRANSPORTENTRY * Sess2 = NULL;
|
TRANSPORTENTRY * Sess2 = NULL;
|
||||||
|
@ -5649,7 +5650,7 @@ int Telnet_Connected(struct TNCINFO * TNC, struct ConnectionInfo * sockptr, SOCK
|
||||||
|
|
||||||
sockptr->FromHostBuffPutptr = sockptr->FromHostBuffGetptr = 0;
|
sockptr->FromHostBuffPutptr = sockptr->FromHostBuffGetptr = 0;
|
||||||
|
|
||||||
TNC->Streams[Stream].bytesRXed = TNC->Streams[Stream].bytesTXed = 0;
|
TNC->Streams[Stream].BytesRXed = TNC->Streams[Stream].BytesTXed = 0;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -6507,7 +6508,7 @@ BOOL TelSendPacket(int Stream, struct STREAMINFO * STREAM, PMSGWITHLEN buffptr,
|
||||||
datalen = (int)buffptr->Len;
|
datalen = (int)buffptr->Len;
|
||||||
MsgPtr = &buffptr->Data[0];
|
MsgPtr = &buffptr->Data[0];
|
||||||
|
|
||||||
STREAM->bytesTXed += datalen;
|
STREAM->BytesTXed += datalen;
|
||||||
|
|
||||||
sock = sockptr->socket;
|
sock = sockptr->socket;
|
||||||
|
|
||||||
|
@ -6756,7 +6757,7 @@ extern struct DATAMESSAGE * REPLYBUFFER;
|
||||||
char * __cdecl Cmdprintf(TRANSPORTENTRY * Session, char * Bufferptr, const char * format, ...);
|
char * __cdecl Cmdprintf(TRANSPORTENTRY * Session, char * Bufferptr, const char * format, ...);
|
||||||
|
|
||||||
|
|
||||||
VOID RECONFIGTELNET (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID RECONFIGTELNET (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
int Port = 0, index =0;
|
int Port = 0, index =0;
|
||||||
char * ptr, *Context;
|
char * ptr, *Context;
|
||||||
|
@ -6941,7 +6942,7 @@ VOID RECONFIGTELNET (TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail,
|
||||||
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
SendCommandReply(Session, REPLYBUFFER, (int)(Bufferptr - (char *)REPLYBUFFER));
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID SHOWTELNET(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, struct CMDX * CMD)
|
VOID SHOWTELNET(TRANSPORTENTRY * Session, char * Bufferptr, char * CmdTail, CMDX * CMD)
|
||||||
{
|
{
|
||||||
// DISPLAY Telnet Server Status Mheard
|
// DISPLAY Telnet Server Status Mheard
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,207 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="UDPtoTCP"
|
||||||
|
ProjectGUID="{879D4FD3-82E0-429E-8A54-7AF4CA9FEF7D}"
|
||||||
|
RootNamespace="UDPtoTCP"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="0"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="3"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib WS2_32.Lib $(NOINHERIT)"
|
||||||
|
LinkIncremental="2"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||||
|
IntermediateDirectory="$(ConfigurationName)"
|
||||||
|
ConfigurationType="1"
|
||||||
|
CharacterSet="1"
|
||||||
|
WholeProgramOptimization="1"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||||
|
RuntimeLibrary="2"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLinkerTool"
|
||||||
|
AdditionalDependencies="kernel32.lib $(NoInherit)"
|
||||||
|
LinkIncremental="1"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
|
SubSystem="1"
|
||||||
|
OptimizeReferences="2"
|
||||||
|
EnableCOMDATFolding="2"
|
||||||
|
TargetMachine="1"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManifestTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCAppVerifierTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebDeploymentTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\UDPtoTCP.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\stdafx.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<File
|
||||||
|
RelativePath=".\ReadMe.txt"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioUserFile
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
ShowAllFiles="false"
|
||||||
|
>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
>
|
||||||
|
<DebugSettings
|
||||||
|
Command="$(TargetPath)"
|
||||||
|
WorkingDirectory=""
|
||||||
|
CommandArguments=""
|
||||||
|
Attach="false"
|
||||||
|
DebuggerType="3"
|
||||||
|
Remote="1"
|
||||||
|
RemoteMachine="SKIGACER"
|
||||||
|
RemoteCommand=""
|
||||||
|
HttpUrl=""
|
||||||
|
PDBPath=""
|
||||||
|
SQLDebugging=""
|
||||||
|
Environment=""
|
||||||
|
EnvironmentMerge="true"
|
||||||
|
DebuggerFlavor=""
|
||||||
|
MPIRunCommand=""
|
||||||
|
MPIRunArguments=""
|
||||||
|
MPIRunWorkingDirectory=""
|
||||||
|
ApplicationCommand=""
|
||||||
|
ApplicationArguments=""
|
||||||
|
ShimCommand=""
|
||||||
|
MPIAcceptMode=""
|
||||||
|
MPIAcceptFilter=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
</VisualStudioUserFile>
|
29
UIARQ.c
29
UIARQ.c
|
@ -367,10 +367,10 @@ static VOID UpdateStatsLine(struct TNCINFO * TNC, struct STREAMINFO * STREAM)
|
||||||
{
|
{
|
||||||
char Count[16];
|
char Count[16];
|
||||||
|
|
||||||
sprintf(Count, "%d", STREAM->bytesRXed);
|
sprintf(Count, "%d", STREAM->BytesRXed);
|
||||||
SetWindowText(STREAM->xIDC_RXED, Count);
|
SetWindowText(STREAM->xIDC_RXED, Count);
|
||||||
|
|
||||||
sprintf(Count, "%d", STREAM->bytesTXed);
|
sprintf(Count, "%d", STREAM->BytesTXed);
|
||||||
SetWindowText(STREAM->xIDC_SEND, Count);
|
SetWindowText(STREAM->xIDC_SEND, Count);
|
||||||
|
|
||||||
sprintf(Count, "%d", STREAM->BytesResent);
|
sprintf(Count, "%d", STREAM->BytesResent);
|
||||||
|
@ -849,7 +849,7 @@ static VOID ProcessFLDigiData(struct TNCINFO * TNC, UCHAR * Input, int Len, int
|
||||||
|
|
||||||
strcpy(STREAM->MyCall, call2);
|
strcpy(STREAM->MyCall, call2);
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
||||||
|
|
||||||
if (WL2K)
|
if (WL2K)
|
||||||
strcpy(SESS->RMSCall, WL2K->RMSCall);
|
strcpy(SESS->RMSCall, WL2K->RMSCall);
|
||||||
|
@ -869,7 +869,7 @@ static VOID ProcessFLDigiData(struct TNCINFO * TNC, UCHAR * Input, int Len, int
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// Make sure app is available
|
// Make sure app is available
|
||||||
|
@ -1001,7 +1001,7 @@ AckConnectRequest:
|
||||||
goto SendKReply; // Repeated ACK
|
goto SendKReply; // Repeated ACK
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->BytesAcked = STREAM->BytesResent = 0;
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
|
|
||||||
ARQ->ARQTimerState = 0;
|
ARQ->ARQTimerState = 0;
|
||||||
|
@ -1240,7 +1240,20 @@ SendKReply:
|
||||||
{
|
{
|
||||||
// Create a traffic record
|
// Create a traffic record
|
||||||
|
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
char logmsg[120];
|
||||||
|
time_t Duration;
|
||||||
|
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1;
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
|
@ -1300,7 +1313,7 @@ SendKReply:
|
||||||
|
|
||||||
buffptr->Len = Len;
|
buffptr->Len = Len;
|
||||||
memcpy(buffptr->Data, &Input[1], Len);
|
memcpy(buffptr->Data, &Input[1], Len);
|
||||||
STREAM->bytesRXed += Len;
|
STREAM->BytesRXed += Len;
|
||||||
|
|
||||||
UpdateStatsLine(TNC, STREAM);
|
UpdateStatsLine(TNC, STREAM);
|
||||||
|
|
||||||
|
@ -1388,7 +1401,7 @@ static VOID SendARQData(struct TNCINFO * TNC, PMSGWITHLEN Buffer, int Stream)
|
||||||
|
|
||||||
ARQ->TXHOLDQ[ARQ->TXSeq] = Buffer;
|
ARQ->TXHOLDQ[ARQ->TXSeq] = Buffer;
|
||||||
|
|
||||||
STREAM->bytesTXed += Origlen;
|
STREAM->BytesTXed += Origlen;
|
||||||
|
|
||||||
UpdateStatsLine(TNC, STREAM);
|
UpdateStatsLine(TNC, STREAM);
|
||||||
|
|
||||||
|
|
33
UZ7HODrv.c
33
UZ7HODrv.c
|
@ -62,7 +62,7 @@ void ConnecttoUZ7HOThread(void * portptr);
|
||||||
void CreateMHWindow();
|
void CreateMHWindow();
|
||||||
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
int Update_MH_List(struct in_addr ipad, char * call, char proto);
|
||||||
|
|
||||||
int ConnecttoUZ7HO(int port);
|
int ConnecttoUZ7HO();
|
||||||
static int ProcessReceivedData(int bpqport);
|
static int ProcessReceivedData(int bpqport);
|
||||||
static int ProcessLine(char * buf, int Port);
|
static int ProcessLine(char * buf, int Port);
|
||||||
int KillTNC(struct TNCINFO * TNC);
|
int KillTNC(struct TNCINFO * TNC);
|
||||||
|
@ -350,17 +350,12 @@ VOID UZ7HOSuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = TRUE;
|
TNC->PortRecord->PORTCONTROL.PortSuspended = TRUE;
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Interlocked");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
RegisterAPPLCalls(TNC, TRUE);
|
RegisterAPPLCalls(TNC, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID UZ7HOReleasePort(struct TNCINFO * TNC)
|
VOID UZ7HOReleasePort(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = FALSE;
|
TNC->PortRecord->PORTCONTROL.PortSuspended = FALSE;
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
|
|
||||||
RegisterAPPLCalls(TNC, FALSE);
|
RegisterAPPLCalls(TNC, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -374,7 +369,7 @@ int UZ7HOSetFreq(int port, struct TNCINFO * TNC, struct AGWINFO * AGW, PDATAMESS
|
||||||
{
|
{
|
||||||
// Read Freq
|
// Read Freq
|
||||||
|
|
||||||
buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "UZ7HO} Modem Frequency %d\r", AGW->CenterFreq);
|
buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "UZ7HO} Modem Freqency %d\r", AGW->CenterFreq);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -884,7 +879,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
|
|
||||||
if (STREAM->ReportDISC)
|
if (STREAM->ReportDISC)
|
||||||
{
|
{
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
|
||||||
STREAM->ReportDISC = FALSE;
|
STREAM->ReportDISC = FALSE;
|
||||||
buff->PORT = Stream;
|
buff->PORT = Stream;
|
||||||
|
|
||||||
|
@ -1230,9 +1224,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
ViaList[0] = Digis;
|
ViaList[0] = Digis;
|
||||||
}
|
}
|
||||||
|
|
||||||
hookL4SessionAttempt(STREAM,&STREAM->AGWKey[1], &STREAM->AGWKey[11]);
|
|
||||||
|
|
||||||
|
|
||||||
sent = send(TNCInfo[MasterPort[port]]->TCPSock, (char *)&AGW->TXHeader, AGWHDDRLEN, 0);
|
sent = send(TNCInfo[MasterPort[port]]->TCPSock, (char *)&AGW->TXHeader, AGWHDDRLEN, 0);
|
||||||
if (Digis)
|
if (Digis)
|
||||||
send(TNCInfo[MasterPort[port]]->TCPSock, ViaList, Digis * 10 + 1, 0);
|
send(TNCInfo[MasterPort[port]]->TCPSock, ViaList, Digis * 10 + 1, 0);
|
||||||
|
@ -2234,8 +2225,6 @@ VOID ProcessAGWPacket(struct TNCINFO * TNC, UCHAR * Message)
|
||||||
buffptr->Len = RXHeader->DataLength;
|
buffptr->Len = RXHeader->DataLength;
|
||||||
memcpy(buffptr->Data, Message, RXHeader->DataLength);
|
memcpy(buffptr->Data, Message, RXHeader->DataLength);
|
||||||
|
|
||||||
STREAM->bytesRXed += RXHeader->DataLength;
|
|
||||||
|
|
||||||
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
C_Q_ADD(&STREAM->PACTORtoBPQ_Q, buffptr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -2297,7 +2286,7 @@ VOID ProcessAGWPacket(struct TNCINFO * TNC, UCHAR * Message)
|
||||||
|
|
||||||
// if (STREAM->Disconnecting) //
|
// if (STREAM->Disconnecting) //
|
||||||
// ReleaseTNC(TNC);
|
// ReleaseTNC(TNC);
|
||||||
|
|
||||||
STREAM->Disconnecting = FALSE;
|
STREAM->Disconnecting = FALSE;
|
||||||
STREAM->DiscWhenAllSent = 10;
|
STREAM->DiscWhenAllSent = 10;
|
||||||
STREAM->FramesOutstanding = 0;
|
STREAM->FramesOutstanding = 0;
|
||||||
|
@ -2376,7 +2365,7 @@ GotStream:
|
||||||
memcpy(STREAM->AGWKey, Key, 21);
|
memcpy(STREAM->AGWKey, Key, 21);
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = 0;
|
||||||
|
|
||||||
SuspendOtherPorts(TNC);
|
SuspendOtherPorts(TNC);
|
||||||
|
|
||||||
|
@ -2473,13 +2462,11 @@ GotStream:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(STREAM->MyCall, TNC->TargetCall);
|
|
||||||
|
|
||||||
if (App < 32)
|
if (App < 32)
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// Make sure app is available
|
// Make sure app is available
|
||||||
|
@ -2510,9 +2497,6 @@ GotStream:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(STREAM->MyCall, TNC->TargetCall);
|
|
||||||
|
|
||||||
|
|
||||||
// Not to a known appl - drop through to Node
|
// Not to a known appl - drop through to Node
|
||||||
|
|
||||||
|
@ -2537,7 +2521,7 @@ GotStream:
|
||||||
STREAM->Connected = TRUE;
|
STREAM->Connected = TRUE;
|
||||||
STREAM->Connecting = FALSE;
|
STREAM->Connecting = FALSE;
|
||||||
STREAM->ConnectTime = time(NULL);
|
STREAM->ConnectTime = time(NULL);
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = 0;
|
STREAM->BytesRXed = STREAM->BytesTXed = 0;
|
||||||
|
|
||||||
buffptr = GetBuff();
|
buffptr = GetBuff();
|
||||||
if (buffptr == 0) return; // No buffers, so ignore
|
if (buffptr == 0) return; // No buffers, so ignore
|
||||||
|
@ -2751,7 +2735,7 @@ GotStream:
|
||||||
// Capabilities - along with Version used to indicate QtSoundModem
|
// Capabilities - along with Version used to indicate QtSoundModem
|
||||||
// with ability to set and read Modem type and frequency/
|
// with ability to set and read Modem type and frequency/
|
||||||
|
|
||||||
if ((Message[2] == 24 && Message[3] == 3 && Message[4] == 100) || TNC->AGWInfo->isQTSM)
|
if (Message[2] == 24 && Message[3] == 3 && Message[4] == 100)
|
||||||
{
|
{
|
||||||
// Set flag on any other ports on same TNC (all ports with this as master port)
|
// Set flag on any other ports on same TNC (all ports with this as master port)
|
||||||
|
|
||||||
|
@ -2939,9 +2923,6 @@ VOID SendData(int Stream, struct TNCINFO * TNC, char * Key, char * Msg, int MsgL
|
||||||
memcpy(AGW->TXHeader.callfrom, &Key[11], 10);
|
memcpy(AGW->TXHeader.callfrom, &Key[11], 10);
|
||||||
memcpy(AGW->TXHeader.callto, &Key[1], 10);
|
memcpy(AGW->TXHeader.callto, &Key[1], 10);
|
||||||
|
|
||||||
TNC->Streams[Stream].bytesTXed += MsgLen;
|
|
||||||
|
|
||||||
|
|
||||||
// If Length is greater than Paclen we should fragment
|
// If Length is greater than Paclen we should fragment
|
||||||
|
|
||||||
if (TNC->PortRecord->ATTACHEDSESSIONS[Stream])
|
if (TNC->PortRecord->ATTACHEDSESSIONS[Stream])
|
||||||
|
|
2
V4.c
2
V4.c
|
@ -1273,7 +1273,7 @@ static VOID ProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// Make sure app is available
|
// Make sure app is available
|
||||||
|
|
288
VARA.c
288
VARA.c
|
@ -258,9 +258,6 @@ static int ProcessLine(char * buf, int Port)
|
||||||
*ptr = 0;
|
*ptr = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (_memicmp(buf, "VARAAC", 6) == 0)
|
|
||||||
TNC->VaraACAllowed = atoi(&buf[7]);
|
|
||||||
|
|
||||||
else if (_memicmp(buf, "BW2300", 6) == 0)
|
else if (_memicmp(buf, "BW2300", 6) == 0)
|
||||||
{
|
{
|
||||||
TNC->ARDOPCurrentMode[0] = 'W'; // Save current state for scanning
|
TNC->ARDOPCurrentMode[0] = 'W'; // Save current state for scanning
|
||||||
|
@ -284,8 +281,7 @@ static int ProcessLine(char * buf, int Port)
|
||||||
else if (_memicmp(buf, "FM9600", 5) == 0)
|
else if (_memicmp(buf, "FM9600", 5) == 0)
|
||||||
TNC->DefaultMode = TNC->WL2KMode = 52;
|
TNC->DefaultMode = TNC->WL2KMode = 52;
|
||||||
else if (standardParams(TNC, buf) == FALSE)
|
else if (standardParams(TNC, buf) == FALSE)
|
||||||
strcat(TNC->InitScript, buf);
|
strcat(TNC->InitScript, buf);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (TRUE);
|
return (TRUE);
|
||||||
|
@ -308,31 +304,12 @@ static SOCKADDR_IN rxaddr;
|
||||||
|
|
||||||
static int addrlen=sizeof(sinx);
|
static int addrlen=sizeof(sinx);
|
||||||
|
|
||||||
void doVarACSend(struct TNCINFO * TNC)
|
|
||||||
{
|
|
||||||
int hdrlen;
|
|
||||||
int txlen = strlen(TNC->VARACMsg);
|
|
||||||
char txbuff[64];
|
|
||||||
|
|
||||||
txlen--; // remove cr
|
|
||||||
hdrlen = sprintf(txbuff, "%d ", txlen);
|
|
||||||
send(TNC->TCPDataSock, txbuff, hdrlen, 0); // send length
|
|
||||||
send(TNC->TCPDataSock, TNC->VARACMsg, txlen, 0);
|
|
||||||
|
|
||||||
free (TNC->VARACMsg);
|
|
||||||
TNC->VARACMsg = 0;
|
|
||||||
TNC->VARACSize = 0;
|
|
||||||
|
|
||||||
TNC->VarACTimer = 0;
|
|
||||||
return ;
|
|
||||||
}
|
|
||||||
static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
{
|
{
|
||||||
size_t datalen;
|
size_t datalen;
|
||||||
PMSGWITHLEN buffptr;
|
PMSGWITHLEN buffptr;
|
||||||
char txbuff[500];
|
char txbuff[500];
|
||||||
unsigned int bytes;
|
unsigned int bytes,txlen=0;
|
||||||
size_t txlen=0;
|
|
||||||
size_t Param;
|
size_t Param;
|
||||||
HKEY hKey=0;
|
HKEY hKey=0;
|
||||||
struct TNCINFO * TNC = TNCInfo[port];
|
struct TNCINFO * TNC = TNCInfo[port];
|
||||||
|
@ -365,14 +342,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
|
|
||||||
// approx 100 mS Timer. May now be needed, as Poll can be called more frequently in some circumstances
|
// approx 100 mS Timer. May now be needed, as Poll can be called more frequently in some circumstances
|
||||||
|
|
||||||
if (TNC->VarACTimer)
|
|
||||||
{
|
|
||||||
TNC->VarACTimer--;
|
|
||||||
|
|
||||||
if (TNC->VarACTimer == 0)
|
|
||||||
doVarACSend(TNC);
|
|
||||||
}
|
|
||||||
|
|
||||||
// G7TAJ's code to record activity for stats display
|
// G7TAJ's code to record activity for stats display
|
||||||
|
|
||||||
if ( TNC->BusyFlags && CDBusy )
|
if ( TNC->BusyFlags && CDBusy )
|
||||||
|
@ -394,18 +363,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check ATTACH time limit
|
|
||||||
|
|
||||||
if (STREAM->Attached)
|
|
||||||
{
|
|
||||||
if (STREAM->AttachTime && TNC->AttachTimeLimit && time(NULL) > (TNC->AttachTimeLimit + STREAM->AttachTime))
|
|
||||||
{
|
|
||||||
STREAM->ReportDISC = 1;
|
|
||||||
STREAM->AttachTime = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
while (TNC->PortRecord->UI_Q)
|
while (TNC->PortRecord->UI_Q)
|
||||||
{
|
{
|
||||||
buffptr = Q_REM(&TNC->PortRecord->UI_Q);
|
buffptr = Q_REM(&TNC->PortRecord->UI_Q);
|
||||||
|
@ -518,8 +475,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
int calllen;
|
int calllen;
|
||||||
char Msg[80];
|
char Msg[80];
|
||||||
|
|
||||||
memset(STREAM, 0, sizeof(struct STREAMINFO));
|
|
||||||
|
|
||||||
TNC->Streams[0].Attached = TRUE;
|
TNC->Streams[0].Attached = TRUE;
|
||||||
|
|
||||||
calllen = ConvFromAX25(TNC->PortRecord->ATTACHEDSESSIONS[0]->L4USER, TNC->Streams[0].MyCall);
|
calllen = ConvFromAX25(TNC->PortRecord->ATTACHEDSESSIONS[0]->L4USER, TNC->Streams[0].MyCall);
|
||||||
|
@ -530,7 +485,6 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
VARASendCommand(TNC, "LISTEN OFF\r", TRUE);
|
VARASendCommand(TNC, "LISTEN OFF\r", TRUE);
|
||||||
|
|
||||||
TNC->SessionTimeLimit = TNC->DefaultSessionTimeLimit; // Reset Limit
|
TNC->SessionTimeLimit = TNC->DefaultSessionTimeLimit; // Reset Limit
|
||||||
STREAM->AttachTime = time(NULL);
|
|
||||||
|
|
||||||
// Stop other ports in same group
|
// Stop other ports in same group
|
||||||
|
|
||||||
|
@ -574,47 +528,9 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
{
|
{
|
||||||
PMSGWITHLEN buffptr = Q_REM(&TNC->Streams[0].BPQtoPACTOR_Q);
|
PMSGWITHLEN buffptr = Q_REM(&TNC->Streams[0].BPQtoPACTOR_Q);
|
||||||
txlen = (int)buffptr->Len;
|
txlen = (int)buffptr->Len;
|
||||||
|
memcpy(txbuff, buffptr->Data, txlen);
|
||||||
if(TNC->VaraACMode || TNC->VaraModeSet == 0)
|
|
||||||
{
|
|
||||||
// Send in varac format -
|
|
||||||
|
|
||||||
// 5 Hello, 15 de G8 BPQ
|
|
||||||
|
|
||||||
buffptr->Data[txlen] = 0; // Null terminate
|
|
||||||
|
|
||||||
STREAM->bytesTXed += txlen;
|
|
||||||
WritetoTrace(TNC, buffptr->Data, txlen);
|
|
||||||
|
|
||||||
// Always add to stored data and set timer. If it expires send message
|
|
||||||
|
|
||||||
if (TNC->VARACMsg == 0)
|
|
||||||
{
|
|
||||||
TNC->VARACMsg = zalloc(4096);
|
|
||||||
TNC->VARACSize = 4096;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (strlen(TNC->VARACMsg) + txlen >= (TNC->VARACSize - 10))
|
|
||||||
{
|
|
||||||
TNC->VARACSize += 4096;
|
|
||||||
TNC->VARACMsg = realloc(TNC->VARACMsg, TNC->VARACSize);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
strcat(TNC->VARACMsg, buffptr->Data);
|
|
||||||
|
|
||||||
TNC->VarACTimer = 10; // One second
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
else
|
|
||||||
memcpy(txbuff, buffptr->Data, txlen);
|
|
||||||
|
|
||||||
bytes = VARASendData(TNC, &txbuff[0], txlen);
|
bytes = VARASendData(TNC, &txbuff[0], txlen);
|
||||||
STREAM->bytesTXed += bytes;
|
STREAM->BytesTXed += bytes;
|
||||||
ReleaseBuffer(buffptr);
|
ReleaseBuffer(buffptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -649,7 +565,8 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
|
|
||||||
if (buffptr == 0) return (0); // No buffers, so ignore
|
if (buffptr == 0) return (0); // No buffers, so ignore
|
||||||
|
|
||||||
buffptr->Len = sprintf(buffptr->Data,"No Connection to VARA TNC\r");
|
buffptr->Len=36;
|
||||||
|
memcpy(buffptr->Data,"No Connection to VARA TNC\r", 36);
|
||||||
|
|
||||||
C_Q_ADD(&TNC->WINMORtoBPQ_Q, buffptr);
|
C_Q_ADD(&TNC->WINMORtoBPQ_Q, buffptr);
|
||||||
|
|
||||||
|
@ -662,7 +579,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
txlen = (int)buffptr->Len;
|
txlen = (int)buffptr->Len;
|
||||||
memcpy(txbuff, buffptr->Data, txlen);
|
memcpy(txbuff, buffptr->Data, txlen);
|
||||||
bytes=send(TNC->TCPDataSock, buff->L2DATA, txlen, 0);
|
bytes=send(TNC->TCPDataSock, buff->L2DATA, txlen, 0);
|
||||||
STREAM->bytesTXed += bytes;
|
STREAM->BytesTXed += bytes;
|
||||||
WritetoTrace(TNC, txbuff, txlen);
|
WritetoTrace(TNC, txbuff, txlen);
|
||||||
ReleaseBuffer(buffptr);
|
ReleaseBuffer(buffptr);
|
||||||
}
|
}
|
||||||
|
@ -678,56 +595,11 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
|
|
||||||
if (TNC->Streams[0].Connected)
|
if (TNC->Streams[0].Connected)
|
||||||
{
|
{
|
||||||
unsigned char txbuff[512];
|
|
||||||
|
|
||||||
STREAM->PacketsSent++;
|
STREAM->PacketsSent++;
|
||||||
|
|
||||||
if(TNC->VaraACMode == 0 && TNC->VaraModeSet == 1)
|
bytes=send(TNC->TCPDataSock, buff->L2DATA, txlen, 0);
|
||||||
{
|
STREAM->BytesTXed += bytes;
|
||||||
// Normal Send
|
|
||||||
|
|
||||||
memcpy(txbuff, buff->L2DATA, txlen);
|
|
||||||
|
|
||||||
bytes=send(TNC->TCPDataSock, txbuff, txlen, 0);
|
|
||||||
STREAM->bytesTXed += bytes;
|
|
||||||
WritetoTrace(TNC, buff->L2DATA, txlen);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send in varac format - len space data. No cr on end, but is implied
|
|
||||||
|
|
||||||
// 5 Hello
|
|
||||||
|
|
||||||
// I think we have to send a whole message (something terminated with a new line)
|
|
||||||
// may need to combine packets. Also I think we need to combine seqential sends
|
|
||||||
// (eg CTEXT and SID)
|
|
||||||
|
|
||||||
|
|
||||||
buff->L2DATA[txlen] = 0; // Null terminate
|
|
||||||
|
|
||||||
STREAM->bytesTXed += txlen;
|
|
||||||
WritetoTrace(TNC, buff->L2DATA, txlen);
|
WritetoTrace(TNC, buff->L2DATA, txlen);
|
||||||
|
|
||||||
// Always add to stored data and set timer. If it expires send message
|
|
||||||
|
|
||||||
if (TNC->VARACMsg == 0)
|
|
||||||
{
|
|
||||||
TNC->VARACMsg = zalloc(4096);
|
|
||||||
TNC->VARACSize = 4096;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (strlen(TNC->VARACMsg) + txlen >= (TNC->VARACSize - 10))
|
|
||||||
{
|
|
||||||
TNC->VARACSize += 4096;
|
|
||||||
TNC->VARACMsg = realloc(TNC->VARACMsg, TNC->VARACSize);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
strcat(TNC->VARACMsg, buff->L2DATA);
|
|
||||||
|
|
||||||
TNC->VarACTimer = 10; // One second
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -736,7 +608,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
TNC->Streams[0].ReportDISC = TRUE; // Tell Node
|
TNC->Streams[0].ReportDISC = TRUE; // Tell Node
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// See if Local command (eg RADIO)
|
// See if Local command (eg RADIO)
|
||||||
|
|
||||||
if (_memicmp(buff->L2DATA, "RADIO ", 6) == 0)
|
if (_memicmp(buff->L2DATA, "RADIO ", 6) == 0)
|
||||||
|
@ -779,13 +651,13 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
if (buff->L2DATA[16] != 13)
|
if (buff->L2DATA[16] != 13)
|
||||||
{
|
{
|
||||||
PMSGWITHLEN buffptr = (PMSGWITHLEN)GetBuff();
|
PMSGWITHLEN buffptr = (PMSGWITHLEN)GetBuff();
|
||||||
|
|
||||||
TNC->SessionTimeLimit = atoi(&buff->L2DATA[16]) * 60;
|
TNC->SessionTimeLimit = atoi(&buff->L2DATA[16]) * 60;
|
||||||
|
|
||||||
if (buffptr)
|
if (buffptr)
|
||||||
{
|
{
|
||||||
buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "VARA} OK\r");
|
buffptr->Len = sprintf((UCHAR *)&buffptr->Data[0], "VARA} OK\r");
|
||||||
C_Q_ADD(&TNC->WINMORtoBPQ_Q, buffptr);
|
C_Q_ADD(&TNC->WINMORtoBPQ_Q, buffptr);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -830,11 +702,9 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
// Need to set connecting here as if we delay for busy we may incorrectly process OK response
|
// Need to set connecting here as if we delay for busy we may incorrectly process OK response
|
||||||
|
|
||||||
TNC->Streams[0].Connecting = TRUE;
|
TNC->Streams[0].Connecting = TRUE;
|
||||||
|
|
||||||
hookL4SessionAttempt(STREAM, &buff->L2DATA[2], TNC->Streams[0].MyCall);
|
|
||||||
|
|
||||||
// See if Busy
|
// See if Busy
|
||||||
|
|
||||||
if (InterlockedCheckBusy(TNC))
|
if (InterlockedCheckBusy(TNC))
|
||||||
{
|
{
|
||||||
// Channel Busy. Unless override set, wait
|
// Channel Busy. Unless override set, wait
|
||||||
|
@ -842,7 +712,7 @@ static size_t ExtProc(int fn, int port, PDATAMESSAGE buff)
|
||||||
if (TNC->OverrideBusy == 0)
|
if (TNC->OverrideBusy == 0)
|
||||||
{
|
{
|
||||||
// Save Command, and wait up to 10 secs
|
// Save Command, and wait up to 10 secs
|
||||||
|
|
||||||
sprintf(TNC->WEB_TNCSTATE, "Waiting for clear channel");
|
sprintf(TNC->WEB_TNCSTATE, "Waiting for clear channel");
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
||||||
|
|
||||||
|
@ -1109,19 +979,12 @@ static int WebProc(struct TNCINFO * TNC, char * Buff, BOOL LOCAL)
|
||||||
|
|
||||||
VOID VARASuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
VOID VARASuspendPort(struct TNCINFO * TNC, struct TNCINFO * ThisTNC)
|
||||||
{
|
{
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = TRUE;
|
|
||||||
VARASendCommand(TNC, "LISTEN OFF\r", TRUE);
|
VARASendCommand(TNC, "LISTEN OFF\r", TRUE);
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Interlocked");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID VARAReleasePort(struct TNCINFO * TNC)
|
VOID VARAReleasePort(struct TNCINFO * TNC)
|
||||||
{
|
{
|
||||||
TNC->PortRecord->PORTCONTROL.PortSuspended = FALSE;
|
|
||||||
VARASendCommand(TNC, "LISTEN ON\r", TRUE);
|
VARASendCommand(TNC, "LISTEN ON\r", TRUE);
|
||||||
strcpy(TNC->WEB_TNCSTATE, "Free");
|
|
||||||
MySetWindowText(TNC->xIDC_TNCSTATE, TNC->WEB_TNCSTATE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1867,15 +1730,6 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
|
|
||||||
TNC->Busy = TNC->BusyHold * 10; // BusyHold delay
|
TNC->Busy = TNC->BusyHold * 10; // BusyHold delay
|
||||||
|
|
||||||
TNC->PTTonTime = GetTickCount();
|
|
||||||
|
|
||||||
// Cancel Busy timer (stats include ptt on time in port active)
|
|
||||||
|
|
||||||
if (TNC->BusyonTime)
|
|
||||||
{
|
|
||||||
TNC->BusyActivemS += (GetTickCount() - TNC->BusyonTime);
|
|
||||||
TNC->BusyonTime = 0;
|
|
||||||
}
|
|
||||||
if (TNC->PTTMode)
|
if (TNC->PTTMode)
|
||||||
Rig_PTT(TNC, TRUE);
|
Rig_PTT(TNC, TRUE);
|
||||||
|
|
||||||
|
@ -1886,12 +1740,6 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
{
|
{
|
||||||
// Debugprintf("PTT Off");
|
// Debugprintf("PTT Off");
|
||||||
|
|
||||||
if (TNC->PTTonTime)
|
|
||||||
{
|
|
||||||
TNC->PTTActivemS += (GetTickCount() - TNC->PTTonTime);
|
|
||||||
TNC->PTTonTime = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (TNC->PTTMode)
|
if (TNC->PTTMode)
|
||||||
Rig_PTT(TNC, FALSE);
|
Rig_PTT(TNC, FALSE);
|
||||||
|
|
||||||
|
@ -1912,8 +1760,6 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
TNC->BusyFlags |= CDBusy;
|
TNC->BusyFlags |= CDBusy;
|
||||||
TNC->Busy = TNC->BusyHold * 10; // BusyHold delay
|
TNC->Busy = TNC->BusyHold * 10; // BusyHold delay
|
||||||
|
|
||||||
TNC->BusyonTime = GetTickCount();
|
|
||||||
|
|
||||||
MySetWindowText(TNC->xIDC_CHANSTATE, "Busy");
|
MySetWindowText(TNC->xIDC_CHANSTATE, "Busy");
|
||||||
strcpy(TNC->WEB_CHANSTATE, "Busy");
|
strcpy(TNC->WEB_CHANSTATE, "Busy");
|
||||||
|
|
||||||
|
@ -1929,13 +1775,6 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
else
|
else
|
||||||
strcpy(TNC->WEB_CHANSTATE, "Clear");
|
strcpy(TNC->WEB_CHANSTATE, "Clear");
|
||||||
|
|
||||||
if (TNC->BusyonTime)
|
|
||||||
{
|
|
||||||
TNC->BusyActivemS += (GetTickCount() - TNC->BusyonTime);
|
|
||||||
TNC->BusyonTime = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
MySetWindowText(TNC->xIDC_CHANSTATE, TNC->WEB_CHANSTATE);
|
MySetWindowText(TNC->xIDC_CHANSTATE, TNC->WEB_CHANSTATE);
|
||||||
TNC->WinmorRestartCodecTimer = time(NULL);
|
TNC->WinmorRestartCodecTimer = time(NULL);
|
||||||
return;
|
return;
|
||||||
|
@ -2017,7 +1856,7 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %s",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %s",
|
||||||
STREAM->bytesTXed, STREAM->bytesRXed, &Buffer[7]);
|
STREAM->BytesTXed, STREAM->BytesRXed, &Buffer[7]);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -2037,18 +1876,8 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
Debugprintf(Buffer);
|
Debugprintf(Buffer);
|
||||||
WritetoTrace(TNC, Buffer, MsgLen - 1);
|
WritetoTrace(TNC, Buffer, MsgLen - 1);
|
||||||
|
|
||||||
STREAM->bytesRXed = STREAM->bytesTXed = STREAM->PacketsSent = 0;
|
STREAM->ConnectTime = time(NULL);
|
||||||
|
STREAM->BytesRXed = STREAM->BytesTXed = STREAM->PacketsSent = 0;
|
||||||
if (TNC->VARACMsg)
|
|
||||||
free(TNC->VARACMsg);
|
|
||||||
|
|
||||||
TNC->VaraACMode = 0;
|
|
||||||
TNC->VARACMsg = 0;
|
|
||||||
TNC->VARACSize = 0;
|
|
||||||
if (TNC->VaraACAllowed == 0)
|
|
||||||
TNC->VaraModeSet = 1; // definitly not varaac
|
|
||||||
else
|
|
||||||
TNC->VaraModeSet = 0; // Don't know yet
|
|
||||||
|
|
||||||
strcpy(TNC->WEB_MODE, "");
|
strcpy(TNC->WEB_MODE, "");
|
||||||
|
|
||||||
|
@ -2104,16 +1933,10 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
|
|
||||||
// Stop other ports in same group
|
// Stop other ports in same group
|
||||||
|
|
||||||
memset(STREAM, 0, sizeof(struct STREAMINFO));
|
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
|
||||||
|
|
||||||
SuspendOtherPorts(TNC);
|
SuspendOtherPorts(TNC);
|
||||||
|
|
||||||
TNC->SessionTimeLimit = TNC->DefaultSessionTimeLimit; // Reset Limit
|
TNC->SessionTimeLimit = TNC->DefaultSessionTimeLimit; // Reset Limit
|
||||||
|
|
||||||
// Only allow VarAC mode for incomming sessions
|
|
||||||
|
|
||||||
ProcessIncommingConnectEx(TNC, Call, 0, (TNC->NetRomMode == 0), TRUE);
|
ProcessIncommingConnectEx(TNC, Call, 0, (TNC->NetRomMode == 0), TRUE);
|
||||||
|
|
||||||
SESS = TNC->PortRecord->ATTACHEDSESSIONS[0];
|
SESS = TNC->PortRecord->ATTACHEDSESSIONS[0];
|
||||||
|
@ -2203,7 +2026,7 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
STREAM->PacketsSent++;
|
STREAM->PacketsSent++;
|
||||||
|
|
||||||
bytes = send(TNC->TCPDataSock, TNC->NetRomTxBuffer, TNC->NetRomTxLen, 0);
|
bytes = send(TNC->TCPDataSock, TNC->NetRomTxBuffer, TNC->NetRomTxLen, 0);
|
||||||
STREAM->bytesTXed += TNC->NetRomTxLen;
|
STREAM->BytesTXed += TNC->NetRomTxLen;
|
||||||
|
|
||||||
free(TNC->NetRomTxBuffer);
|
free(TNC->NetRomTxBuffer);
|
||||||
TNC->NetRomTxBuffer = NULL;
|
TNC->NetRomTxBuffer = NULL;
|
||||||
|
@ -2231,7 +2054,7 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
{
|
{
|
||||||
char AppName[13];
|
char AppName[13];
|
||||||
|
|
||||||
memcpy(AppName, &ApplPtr[App * sizeof(struct CMDX)], 12);
|
memcpy(AppName, &ApplPtr[App * sizeof(CMDX)], 12);
|
||||||
AppName[12] = 0;
|
AppName[12] = 0;
|
||||||
|
|
||||||
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
// if SendTandRtoRelay set and Appl is RMS change to RELAY
|
||||||
|
@ -2284,8 +2107,6 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
STREAM->NeedDisc = 100; // 10 secs
|
STREAM->NeedDisc = 100; // 10 secs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(STREAM->MyCall, TNC->TargetCall);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -2295,7 +2116,6 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
char Reply[80];
|
char Reply[80];
|
||||||
int ReplyLen;
|
int ReplyLen;
|
||||||
|
|
||||||
STREAM->ConnectTime = time(NULL);
|
|
||||||
|
|
||||||
if (TNC->NetRomMode)
|
if (TNC->NetRomMode)
|
||||||
{
|
{
|
||||||
|
@ -2305,10 +2125,11 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
|
|
||||||
if (TNC->NetRomTxLen)
|
if (TNC->NetRomTxLen)
|
||||||
{
|
{
|
||||||
|
|
||||||
STREAM->PacketsSent++;
|
STREAM->PacketsSent++;
|
||||||
|
|
||||||
bytes = send(TNC->TCPDataSock, TNC->NetRomTxBuffer, TNC->NetRomTxLen, 0);
|
bytes = send(TNC->TCPDataSock, TNC->NetRomTxBuffer, TNC->NetRomTxLen, 0);
|
||||||
STREAM->bytesTXed += TNC->NetRomTxLen;
|
STREAM->BytesTXed += TNC->NetRomTxLen;
|
||||||
free(TNC->NetRomTxBuffer);
|
free(TNC->NetRomTxBuffer);
|
||||||
TNC->NetRomTxBuffer = NULL;
|
TNC->NetRomTxBuffer = NULL;
|
||||||
TNC->NetRomTxLen = 0;
|
TNC->NetRomTxLen = 0;
|
||||||
|
@ -2316,9 +2137,6 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
TNC->VaraACMode = 0;
|
|
||||||
TNC->VaraModeSet = 1; // Don't allow connect to VaraAC
|
|
||||||
|
|
||||||
buffptr = GetBuff();
|
buffptr = GetBuff();
|
||||||
|
|
||||||
if (buffptr == 0)
|
if (buffptr == 0)
|
||||||
|
@ -2397,7 +2215,22 @@ VOID VARAProcessResponse(struct TNCINFO * TNC, UCHAR * Buffer, int MsgLen)
|
||||||
{
|
{
|
||||||
// Create a traffic record
|
// Create a traffic record
|
||||||
|
|
||||||
hookL4SessionDeleted(TNC, STREAM);
|
char logmsg[120];
|
||||||
|
time_t Duration;
|
||||||
|
|
||||||
|
Duration = time(NULL) - STREAM->ConnectTime;
|
||||||
|
|
||||||
|
if (Duration == 0)
|
||||||
|
Duration = 1;
|
||||||
|
|
||||||
|
sprintf(logmsg,"Port %2d %9s Bytes Sent %d BPS %d Bytes Received %d BPS %d Time %d Seconds",
|
||||||
|
TNC->Port, STREAM->RemoteCall,
|
||||||
|
STREAM->BytesTXed, (int)(STREAM->BytesTXed/Duration),
|
||||||
|
STREAM->BytesRXed, (int)(STREAM->BytesRXed/Duration), (int)Duration);
|
||||||
|
|
||||||
|
Debugprintf(logmsg);
|
||||||
|
|
||||||
|
STREAM->ConnectTime= 0; //Prevent retrigger
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2750,54 +2583,15 @@ VOID VARAProcessDataPacket(struct TNCINFO * TNC, UCHAR * Data, int Length)
|
||||||
|
|
||||||
TNC->TimeSinceLast = 0;
|
TNC->TimeSinceLast = 0;
|
||||||
|
|
||||||
STREAM->bytesRXed += Length;
|
STREAM->BytesRXed += Length;
|
||||||
|
|
||||||
Data[Length] = 0;
|
Data[Length] = 0;
|
||||||
// Debugprintf("VARA: RXD %d bytes", Length);
|
// Debugprintf("VARA: RXD %d bytes", Length);
|
||||||
|
|
||||||
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
sprintf(TNC->WEB_TRAFFIC, "Sent %d RXed %d Queued %d",
|
||||||
STREAM->bytesTXed, STREAM->bytesRXed,STREAM->BytesOutstanding);
|
STREAM->BytesTXed, STREAM->BytesRXed,STREAM->BytesOutstanding);
|
||||||
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
MySetWindowText(TNC->xIDC_TRAFFIC, TNC->WEB_TRAFFIC);
|
||||||
|
|
||||||
// if VARAAC Mode, remove byte count from front and add cr
|
|
||||||
// could possibly be longer than buffer size
|
|
||||||
|
|
||||||
if (TNC->VaraModeSet == 0) // Could be normal or VaraAC
|
|
||||||
{
|
|
||||||
unsigned char *ptr = memchr(Data, ' ', Length); // contains a space
|
|
||||||
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
int ACLen = atoi(Data);
|
|
||||||
int lenLen = (ptr - Data) + 1;
|
|
||||||
|
|
||||||
if (ACLen == (Length - lenLen))
|
|
||||||
TNC->VaraACMode = 1; // AC Mode
|
|
||||||
}
|
|
||||||
TNC->VaraModeSet = 1; // Know which mode
|
|
||||||
}
|
|
||||||
|
|
||||||
if (TNC->VaraACMode)
|
|
||||||
{
|
|
||||||
char * lenp;
|
|
||||||
char * msg;
|
|
||||||
int len;
|
|
||||||
|
|
||||||
lenp = Data;
|
|
||||||
msg = strlop(lenp, ' ');
|
|
||||||
|
|
||||||
len = atoi(lenp);
|
|
||||||
if (len != strlen(msg))
|
|
||||||
return;
|
|
||||||
|
|
||||||
msg[len++] = 13;
|
|
||||||
msg[len] = 0;
|
|
||||||
|
|
||||||
Length = len;
|
|
||||||
memmove(Data, msg, len + 1);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// May need to fragment
|
// May need to fragment
|
||||||
|
|
||||||
while (Length)
|
while (Length)
|
||||||
|
@ -2899,7 +2693,7 @@ int VARASendData(struct TNCINFO * TNC, UCHAR * Buff, int Len)
|
||||||
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
struct STREAMINFO * STREAM = &TNC->Streams[0];
|
||||||
|
|
||||||
int bytes=send(TNC->TCPDataSock,(const char FAR *)Buff, Len, 0);
|
int bytes=send(TNC->TCPDataSock,(const char FAR *)Buff, Len, 0);
|
||||||
STREAM->bytesTXed += bytes;
|
STREAM->BytesTXed += bytes;
|
||||||
WritetoTrace(TNC, Buff, Len);
|
WritetoTrace(TNC, Buff, Len);
|
||||||
return bytes;
|
return bytes;
|
||||||
}
|
}
|
||||||
|
@ -2998,7 +2792,7 @@ void SendVARANetrom(struct TNCINFO * TNC, unsigned char * Data, int Len)
|
||||||
STREAM->PacketsSent++;
|
STREAM->PacketsSent++;
|
||||||
|
|
||||||
bytes = send(TNC->TCPDataSock, TNC->NetRomTxBuffer, TNC->NetRomTxLen, 0);
|
bytes = send(TNC->TCPDataSock, TNC->NetRomTxBuffer, TNC->NetRomTxLen, 0);
|
||||||
STREAM->bytesTXed += TNC->NetRomTxLen;
|
STREAM->BytesTXed += TNC->NetRomTxLen;
|
||||||
|
|
||||||
free(TNC->NetRomTxBuffer);
|
free(TNC->NetRomTxBuffer);
|
||||||
TNC->NetRomTxBuffer = NULL;
|
TNC->NetRomTxBuffer = NULL;
|
||||||
|
|
|
@ -10,14 +10,14 @@
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define KVers 6,0,24,54
|
#define KVers 6,0,24,42
|
||||||
#define KVerstring "6.0.24.54\0"
|
#define KVerstring "6.0.24.42\0"
|
||||||
|
|
||||||
#ifdef CKernel
|
#ifdef CKernel
|
||||||
|
|
||||||
#define Vers KVers
|
#define Vers KVers
|
||||||
#define Verstring KVerstring
|
#define Verstring KVerstring
|
||||||
#define Datestring "December 2024"
|
#define Datestring "August 2024"
|
||||||
#define VerComments "G8BPQ Packet Switch (C Version)" KVerstring
|
#define VerComments "G8BPQ Packet Switch (C Version)" KVerstring
|
||||||
#define VerCopyright "Copyright © 2001-2024 John Wiseman G8BPQ\0"
|
#define VerCopyright "Copyright © 2001-2024 John Wiseman G8BPQ\0"
|
||||||
#define VerDesc "BPQ32 Switch\0"
|
#define VerDesc "BPQ32 Switch\0"
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue