|
error_t | lcpOpen (PppContext *context) |
| LCP Open event. More...
|
|
error_t | lcpClose (PppContext *context) |
| LCP Close event. More...
|
|
void | lcpTick (PppContext *context) |
| LCP timer handler. More...
|
|
void | lcpProcessPacket (PppContext *context, const PppPacket *packet, size_t length) |
| Process an incoming LCP packet. More...
|
|
error_t | lcpProcessConfigureReq (PppContext *context, const PppConfigurePacket *configureReqPacket) |
| Process Configure-Request packet. More...
|
|
error_t | lcpProcessConfigureAck (PppContext *context, const PppConfigurePacket *configureAckPacket) |
| Process Configure-Ack packet. More...
|
|
error_t | lcpProcessConfigureNak (PppContext *context, const PppConfigurePacket *configureNakPacket) |
| Process Configure-Nak packet. More...
|
|
error_t | lcpProcessConfigureReject (PppContext *context, const PppConfigurePacket *configureRejPacket) |
| Process Configure-Reject packet. More...
|
|
error_t | lcpProcessTerminateReq (PppContext *context, const PppTerminatePacket *terminateReqPacket) |
| Process Terminate-Request packet. More...
|
|
error_t | lcpProcessTerminateAck (PppContext *context, const PppTerminatePacket *terminateAckPacket) |
| Process Terminate-Ack packet. More...
|
|
error_t | lcpProcessCodeRej (PppContext *context, const PppCodeRejPacket *codeRejPacket) |
| Process Code-Reject packet. More...
|
|
error_t | lcpProcessProtocolRej (PppContext *context, const PppProtocolRejPacket *protocolRejPacket) |
| Process Protocol-Reject packet. More...
|
|
error_t | lcpProcessEchoReq (PppContext *context, const PppEchoPacket *echoReqPacket) |
| Process Echo-Request packet. More...
|
|
error_t | lcpProcessEchoRep (PppContext *context, const PppEchoPacket *echoRepPacket) |
| Process Echo-Reply packet. More...
|
|
error_t | lcpProcessDiscardReq (PppContext *context, const PppDiscardReqPacket *discardReqPacket) |
| Process Discard-Request packet. More...
|
|
error_t | lcpProcessUnknownCode (PppContext *context, const PppPacket *packet) |
| Process packet with unknown code. More...
|
|
error_t | lcpProcessUnknownProtocol (PppContext *context, uint16_t protocol, const uint8_t *information, size_t length) |
| Process PPP frame with unknown protocol. More...
|
|
void | lcpThisLayerUp (PppContext *context) |
| This-Layer-Up callback function. More...
|
|
void | lcpThisLayerDown (PppContext *context) |
| This-Layer-Down callback function. More...
|
|
void | lcpThisLayerStarted (PppContext *context) |
| This-Layer-Started callback function. More...
|
|
void | lcpThisLayerFinished (PppContext *context) |
| This-Layer-Finished callback function. More...
|
|
void | lcpInitRestartCount (PppContext *context, uint_t value) |
| Initialize-Restart-Count callback function. More...
|
|
void | lcpZeroRestartCount (PppContext *context) |
| Zero-Restart-Count callback function. More...
|
|
error_t | lcpSendConfigureReq (PppContext *context) |
| Send-Configure-Request callback function. More...
|
|
error_t | lcpSendConfigureAck (PppContext *context, const PppConfigurePacket *configureReqPacket) |
| Send-Configure-Ack callback function. More...
|
|
error_t | lcpSendConfigureNak (PppContext *context, const PppConfigurePacket *configureReqPacket) |
| Send-Configure-Nak callback function. More...
|
|
error_t | lcpSendConfigureRej (PppContext *context, const PppConfigurePacket *configureReqPacket) |
| Send-Configure-Reject callback function. More...
|
|
error_t | lcpSendTerminateReq (PppContext *context) |
| Send-Terminate-Request callback function. More...
|
|
error_t | lcpSendTerminateAck (PppContext *context, const PppTerminatePacket *terminateReqPacket) |
| Send-Terminate-Ack callback function. More...
|
|
error_t | lcpSendCodeRej (PppContext *context, const PppPacket *packet) |
| Send-Code-Reject callback function. More...
|
|
error_t | lcpSendEchoRep (PppContext *context, const PppEchoPacket *echoReqPacket) |
| Send-Echo-Reply callback function. More...
|
|
error_t | lcpParseOption (PppContext *context, PppOption *option, size_t inPacketLen, PppConfigurePacket *outPacket) |
| Parse LCP configuration option. More...
|
|
error_t | lcpParseMruOption (PppContext *context, LcpMruOption *option, PppConfigurePacket *outPacket) |
| Parse Maximum-Receive-Unit option. More...
|
|
error_t | lcpParseAccmOption (PppContext *context, LcpAccmOption *option, PppConfigurePacket *outPacket) |
| Parse Async-Control-Character-Map option. More...
|
|
error_t | lcpParseAuthProtocolOption (PppContext *context, LcpAuthProtocolOption *option, PppConfigurePacket *outPacket) |
| Parse Authentication-Protocol option. More...
|
|
error_t | lcpParseMagicNumberOption (PppContext *context, LcpMagicNumberOption *option, PppConfigurePacket *outPacket) |
| Parse Magic-Number option. More...
|
|
error_t | lcpParsePfcOption (PppContext *context, LcpPfcOption *option, PppConfigurePacket *outPacket) |
| Parse Protocol-Field-Compression option. More...
|
|
error_t | lcpParseAcfcOption (PppContext *context, LcpAcfcOption *option, PppConfigurePacket *outPacket) |
| Parse Address-and-Control-Field-Compression option. More...
|
|
LCP (PPP Link Control Protocol)
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneTCP Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- Author
- Oryx Embedded SARL (www.oryx-embedded.com)
- Version
- 2.4.4
Definition in file lcp.c.