aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd/linkchan.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>1999-07-01 20:44:20 +0000
committerFritz Elfert <felfert@to.com>1999-07-01 20:44:20 +0000
commit80e566ea830ec9e6534f1a140af0bbc6b1765aa7 (patch)
tree86788a4b96d0b9ba70f787e4cd31777c4eb457bc /ncpd/linkchan.h
parent8c29602b21efacced9d7ff4cd1f3c4101dda5f65 (diff)
downloadplptools-80e566ea830ec9e6534f1a140af0bbc6b1765aa7.tar.gz
plptools-80e566ea830ec9e6534f1a140af0bbc6b1765aa7.tar.bz2
plptools-80e566ea830ec9e6534f1a140af0bbc6b1765aa7.zip
modified logging for finer control.
proper reconnect on link failure.
Diffstat (limited to 'ncpd/linkchan.h')
-rw-r--r--ncpd/linkchan.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/ncpd/linkchan.h b/ncpd/linkchan.h
index e90dee2..db36f27 100644
--- a/ncpd/linkchan.h
+++ b/ncpd/linkchan.h
@@ -3,14 +3,17 @@
#include "channel.h"
+#define LINKCHAN_DEBUG_LOG 1
+#define LINKCHAN_DEBUG_DUMP 2
+
class linkChan : public channel {
-public:
- linkChan(ncp *ncpController);
+ public:
+ linkChan(ncp *ncpController);
- void ncpDataCallback(bufferStore &a);
- const char *getNcpConnectName();
- void ncpConnectAck();
- void ncpConnectTerminate();
+ void ncpDataCallback(bufferStore &a);
+ const char *getNcpConnectName();
+ void ncpConnectAck();
+ void ncpConnectTerminate();
};
#endif