aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd/linkchan.h
diff options
context:
space:
mode:
Diffstat (limited to 'ncpd/linkchan.h')
-rw-r--r--ncpd/linkchan.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/ncpd/linkchan.h b/ncpd/linkchan.h
new file mode 100644
index 0000000..e90dee2
--- /dev/null
+++ b/ncpd/linkchan.h
@@ -0,0 +1,16 @@
+#ifndef _linkchan_h_
+#define _linkchan_h_
+
+#include "channel.h"
+
+class linkChan : public channel {
+public:
+ linkChan(ncp *ncpController);
+
+ void ncpDataCallback(bufferStore &a);
+ const char *getNcpConnectName();
+ void ncpConnectAck();
+ void ncpConnectTerminate();
+};
+
+#endif