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

Removed unused sbbs_t members (debug and node_disk) left over from 2.x.

Added client_t* parm to sbbs_t constructor (to initialize client member).
parent 05cd3f05
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,10 @@
#include <direct.h> /* _mkdir() prototype */
#include <mmsystem.h> /* SND_ASYNC */
#if defined(_DEBUG)
#include <crtdbg.h> /* Windows debug macros and stuff */
#endif
#elif defined(__unix__) /* Unix-variant */
#include <unistd.h> /* close */
......@@ -118,7 +122,8 @@ class sbbs_t
public:
sbbs_t(ushort node_num, DWORD addr, char* host_name, SOCKET, scfg_t*, char* text[]);
sbbs_t(ushort node_num, DWORD addr, char* host_name, SOCKET
,scfg_t*, char* text[], client_t* client_info);
~sbbs_t();
bool init(void);
......@@ -215,7 +220,6 @@ public:
char *text_sav[TOTAL_TEXT]; /* Text from ctrl\text.dat */
char orgcmd[129]; /* Original command to execute bbs */
char dszlog[127]; /* DSZLOG enviornment variable */
char debug; /* Flag to allow debug writes */
int keybuftop,keybufbot; /* Keyboard input buffer pointers */
char keybuf[KEY_BUFSIZE]; /* Keyboard input buffer */
char * connection; /* Connection Description */
......@@ -262,7 +266,6 @@ public:
logon_fbacks; /* Feedbacks This Call */
uchar logon_ml; /* ML of the user apon logon */
int node_disk; /* Number of Node's disk */
uint main_cmds; /* Number of Main Commands this call */
uint xfer_cmds; /* Number of Xfer Commands this call */
ulong posts_read; /* Number of Posts read this call */
......
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