aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd/linkchan.h
diff options
context:
space:
mode:
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