1#ifndef __PPP_DEV_H
2#define __PPP_DEV_H
3#include <net_device.h>
4#include <net_stack.h>
5
6#include <KPPPInterface.h>
7
8#include <lock.h>
9#include <util/AutoLock.h>
10#include <util/DoublyLinkedList.h>
11
12struct ppp_device : net_device, DoublyLinkedListLinkImpl<ppp_device> {
13	KPPPInterface *         KPPP_Interface;
14	uint32                  frame_size;
15	net_fifo                ppp_fifo;
16};
17
18#endif
19