aboutsummaryrefslogtreecommitdiffstats
path: root/ncpd/linkchan.h
blob: db36f27e0342a0f7d01b51d7c2794c52030841af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _linkchan_h_
#define _linkchan_h_

#include "channel.h"

#define LINKCHAN_DEBUG_LOG  1
#define LINKCHAN_DEBUG_DUMP 2

class linkChan : public channel {
	public:
		linkChan(ncp *ncpController);
  
		void ncpDataCallback(bufferStore &a);
		const char *getNcpConnectName();
		void ncpConnectAck();
		void ncpConnectTerminate();
};

#endif