Searched refs:KPPPDevice (Results 1 – 11 of 11) sorted by relevance
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/ |
H A D | KPPPDevice.cpp | 28 KPPPDevice::KPPPDevice(const char *name, uint32 overhead, KPPPInterface& interface, in KPPPDevice() function in KPPPDevice 40 KPPPDevice::~KPPPDevice() in ~KPPPDevice() 52 KPPPDevice::Control(uint32 op, void *data, size_t length) in Control() 83 KPPPDevice::IsAllowedToSend() const in IsAllowedToSend() 92 KPPPDevice::Receive(net_buffer *packet, uint16 protocolNumber) in Receive() 112 KPPPDevice::UpStarted() in UpStarted() 129 KPPPDevice::DownStarted() in DownStarted() 139 KPPPDevice::UpFailedEvent() in UpFailedEvent() 149 KPPPDevice::UpEvent() in UpEvent() 159 KPPPDevice::DownEvent() in DownEvent()
|
H A D | Jamfile | 18 KPPPDevice.cpp
|
H A D | KPPPInterface.cpp | 955 KPPPInterface::SetDevice(KPPPDevice *device) in SetDevice()
|
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/ |
H A D | KPPPDevice.h | 19 class KPPPDevice : public KPPPLayer { 24 KPPPDevice(const char *name, uint32 overhead, KPPPInterface& interface, 28 virtual ~KPPPDevice();
|
H A D | KPPPInterface.h | 39 class KPPPDevice; variable 128 bool SetDevice(KPPPDevice *device); 130 KPPPDevice *Device() const in Device() 292 KPPPDevice *fDevice;
|
/haiku/docs/user/ppp/ |
H A D | KernelPPPIntro.dox | 25 - KPPPDevice (a PPP transport device: PPPoE, modem, cell phone, etc.) 32 KPPPInterface, KPPPDevice, and KPPPProtocol derive from KPPPLayer. When sending, 36 A different system is used for receiving packets: KPPPDevice passes the received
|
/haiku/src/add-ons/kernel/network/ppp/pppoe/ |
H A D | PPPoEDevice.h | 27 class PPPoEDevice : public KPPPDevice {
|
H A D | PPPoEDevice.cpp | 62 : KPPPDevice("PPPoE", PPPoE_HEADER_SIZE + ETHER_HDR_LEN, interface, settings), in PPPoEDevice() 114 if (KPPPDevice::InitCheck() != B_OK) in InitCheck() 117 return KPPPDevice::InitCheck() == B_OK ? B_OK : B_ERROR; in InitCheck()
|
/haiku/src/add-ons/kernel/network/ppp/modem/ |
H A D | ModemDevice.h | 26 class ModemDevice : public KPPPDevice {
|
H A D | ModemDevice.cpp | 181 : KPPPDevice("Modem", 0, interface, settings), in ModemDevice() 227 && KPPPDevice::InitCheck() == B_OK ? B_OK : B_ERROR; in InitCheck()
|
/haiku/src/tests/add-ons/kernel/network/ppp/shared/libkernelppp/ |
H A D | Jamfile | 10 KPPPDevice.cpp
|