diff options
author | Fritz Elfert <felfert@to.com> | 1999-06-29 02:23:31 +0000 |
---|---|---|
committer | Fritz Elfert <felfert@to.com> | 1999-06-29 02:23:31 +0000 |
commit | 6ab1aa5f2156ef781da6e1b57a183825b88bef9a (patch) | |
tree | 76d2b37e54731e68c9855e5658ac18558a369313 /ncpd/linkchan.h | |
parent | f3e248b6e75c7ce5beda577f5712915417313b0a (diff) | |
download | plptools-6ab1aa5f2156ef781da6e1b57a183825b88bef9a.tar.gz plptools-6ab1aa5f2156ef781da6e1b57a183825b88bef9a.tar.bz2 plptools-6ab1aa5f2156ef781da6e1b57a183825b88bef9a.zip |
Initial import
Diffstat (limited to 'ncpd/linkchan.h')
-rw-r--r-- | ncpd/linkchan.h | 16 |
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 |