Skip to content
Snippets Groups Projects
Commit 5e960b2f authored by rswindell's avatar rswindell
Browse files

Increased size of sbbs_t::telnet_cmd buffer (from 10 to 64 bytes).

Added sbbs_t::terminal for terminal type description (e.g. "ANSI").
parent 067086a7
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,7 @@
#include "client.h" /* client_t definition */
#include "crc16.h"
#include "crc32.h"
#include "telnet.h"
/* Synchronet Node Instance class definition */
#ifdef __cplusplus
......@@ -169,10 +170,11 @@ public:
void send_telnet_cmd(uchar cmd, uchar opt);
uchar telnet_cmd[10];
uchar telnet_cmd[64];
int telnet_cmdlen;
ulong telnet_mode;
uchar telnet_last_rxch;
char terminal[TELNET_TERM_MAXLEN+1];
time_t event_time; // Time of next exclusive event
char* event_code; // Internal code of next exclusive event
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment