IPCP (PPP Internet Protocol Control Protocol) More...
#include "core/net.h"
#include "ipv4/ipv4.h"
#include "ppp/ppp_fsm.h"
#include "ppp/ppp_misc.h"
#include "ppp/ppp_debug.h"
#include "ppp/ipcp.h"
#include "debug.h"
Go to the source code of this file.
Macros | |
#define TRACE_LEVEL PPP_TRACE_LEVEL | |
Functions | |
error_t ipcpOpen (PppContext *context) | |
IPCP Open event. More... | |
error_t ipcpClose (PppContext *context) | |
IPCP Close event. More... | |
void ipcpTick (PppContext *context) | |
IPCP timer handler. More... | |
void ipcpProcessPacket (PppContext *context, const PppPacket *packet, size_t length) | |
Process an incoming IPCP packet. More... | |
error_t ipcpProcessConfigureReq (PppContext *context, const PppConfigurePacket *configureReqPacket) | |
Process Configure-Request packet. More... | |
error_t ipcpProcessConfigureAck (PppContext *context, const PppConfigurePacket *configureAckPacket) | |
Process Configure-Ack packet. More... | |
error_t ipcpProcessConfigureNak (PppContext *context, const PppConfigurePacket *configureNakPacket) | |
Process Configure-Nak packet. More... | |
error_t ipcpProcessConfigureReject (PppContext *context, const PppConfigurePacket *configureRejPacket) | |
Process Configure-Reject packet. More... | |
error_t ipcpProcessTerminateReq (PppContext *context, const PppTerminatePacket *terminateReqPacket) | |
Process Terminate-Request packet. More... | |
error_t ipcpProcessTerminateAck (PppContext *context, const PppTerminatePacket *terminateAckPacket) | |
Process Terminate-Ack packet. More... | |
error_t ipcpProcessCodeRej (PppContext *context, const PppCodeRejPacket *codeRejPacket) | |
Process Code-Reject packet. More... | |
error_t ipcpProcessUnknownCode (PppContext *context, const PppPacket *packet) | |
Process packet with unknown code. More... | |
void ipcpThisLayerUp (PppContext *context) | |
This-Layer-Up callback function. More... | |
void ipcpThisLayerDown (PppContext *context) | |
This-Layer-Down callback function. More... | |
void ipcpThisLayerStarted (PppContext *context) | |
This-Layer-Started callback function. More... | |
void ipcpThisLayerFinished (PppContext *context) | |
This-Layer-Finished callback function. More... | |
void ipcpInitRestartCount (PppContext *context, uint_t value) | |
Initialize-Restart-Count callback function. More... | |
void ipcpZeroRestartCount (PppContext *context) | |
Zero-Restart-Count callback function. More... | |
error_t ipcpSendConfigureReq (PppContext *context) | |
Send-Configure-Request callback function. More... | |
error_t ipcpSendConfigureAck (PppContext *context, const PppConfigurePacket *configureReqPacket) | |
Send-Configure-Ack callback function. More... | |
error_t ipcpSendConfigureNak (PppContext *context, const PppConfigurePacket *configureReqPacket) | |
Send-Configure-Nak callback function. More... | |
error_t ipcpSendConfigureRej (PppContext *context, const PppConfigurePacket *configureReqPacket) | |
Send-Configure-Reject callback function. More... | |
error_t ipcpSendTerminateReq (PppContext *context) | |
Send-Terminate-Request callback function. More... | |
error_t ipcpSendTerminateAck (PppContext *context, const PppTerminatePacket *terminateReqPacket) | |
Send-Terminate-Ack callback function. More... | |
error_t ipcpSendCodeRej (PppContext *context, const PppPacket *packet) | |
Send-Code-Reject callback function. More... | |
error_t ipcpParseOption (PppContext *context, PppOption *option, size_t inPacketLen, PppConfigurePacket *outPacket) | |
Parse IPCP configuration option. More... | |
error_t ipcpParseIpAddressOption (PppContext *context, IpcpIpAddressOption *option, PppConfigurePacket *outPacket) | |
Parse IP-Address option. More... | |
Variables | |
const PppCallbacks ipcpCallbacks | |
IPCP FSM callbacks. More... | |
Detailed Description
IPCP (PPP Internet Protocol Control Protocol)
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2025 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.
- Version
- 2.5.0
Definition in file ipcp.c.
Macro Definition Documentation
◆ TRACE_LEVEL
Function Documentation
◆ ipcpClose()
error_t ipcpClose | ( | PppContext * | context | ) |
◆ ipcpInitRestartCount()
void ipcpInitRestartCount | ( | PppContext * | context, |
uint_t | value | ||
) |
◆ ipcpOpen()
error_t ipcpOpen | ( | PppContext * | context | ) |
◆ ipcpParseIpAddressOption()
error_t ipcpParseIpAddressOption | ( | PppContext * | context, |
IpcpIpAddressOption * | option, | ||
PppConfigurePacket * | outPacket | ||
) |
◆ ipcpParseOption()
error_t ipcpParseOption | ( | PppContext * | context, |
PppOption * | option, | ||
size_t | inPacketLen, | ||
PppConfigurePacket * | outPacket | ||
) |
◆ ipcpProcessCodeRej()
error_t ipcpProcessCodeRej | ( | PppContext * | context, |
const PppCodeRejPacket * | codeRejPacket | ||
) |
◆ ipcpProcessConfigureAck()
error_t ipcpProcessConfigureAck | ( | PppContext * | context, |
const PppConfigurePacket * | configureAckPacket | ||
) |
◆ ipcpProcessConfigureNak()
error_t ipcpProcessConfigureNak | ( | PppContext * | context, |
const PppConfigurePacket * | configureNakPacket | ||
) |
◆ ipcpProcessConfigureReject()
error_t ipcpProcessConfigureReject | ( | PppContext * | context, |
const PppConfigurePacket * | configureRejPacket | ||
) |
◆ ipcpProcessConfigureReq()
error_t ipcpProcessConfigureReq | ( | PppContext * | context, |
const PppConfigurePacket * | configureReqPacket | ||
) |
◆ ipcpProcessPacket()
void ipcpProcessPacket | ( | PppContext * | context, |
const PppPacket * | packet, | ||
size_t | length | ||
) |
◆ ipcpProcessTerminateAck()
error_t ipcpProcessTerminateAck | ( | PppContext * | context, |
const PppTerminatePacket * | terminateAckPacket | ||
) |
◆ ipcpProcessTerminateReq()
error_t ipcpProcessTerminateReq | ( | PppContext * | context, |
const PppTerminatePacket * | terminateReqPacket | ||
) |
◆ ipcpProcessUnknownCode()
error_t ipcpProcessUnknownCode | ( | PppContext * | context, |
const PppPacket * | packet | ||
) |
◆ ipcpSendCodeRej()
error_t ipcpSendCodeRej | ( | PppContext * | context, |
const PppPacket * | packet | ||
) |
◆ ipcpSendConfigureAck()
error_t ipcpSendConfigureAck | ( | PppContext * | context, |
const PppConfigurePacket * | configureReqPacket | ||
) |
◆ ipcpSendConfigureNak()
error_t ipcpSendConfigureNak | ( | PppContext * | context, |
const PppConfigurePacket * | configureReqPacket | ||
) |
◆ ipcpSendConfigureRej()
error_t ipcpSendConfigureRej | ( | PppContext * | context, |
const PppConfigurePacket * | configureReqPacket | ||
) |
◆ ipcpSendConfigureReq()
error_t ipcpSendConfigureReq | ( | PppContext * | context | ) |
◆ ipcpSendTerminateAck()
error_t ipcpSendTerminateAck | ( | PppContext * | context, |
const PppTerminatePacket * | terminateReqPacket | ||
) |
◆ ipcpSendTerminateReq()
error_t ipcpSendTerminateReq | ( | PppContext * | context | ) |
◆ ipcpThisLayerDown()
void ipcpThisLayerDown | ( | PppContext * | context | ) |
◆ ipcpThisLayerFinished()
void ipcpThisLayerFinished | ( | PppContext * | context | ) |
◆ ipcpThisLayerStarted()
void ipcpThisLayerStarted | ( | PppContext * | context | ) |
◆ ipcpThisLayerUp()
void ipcpThisLayerUp | ( | PppContext * | context | ) |
◆ ipcpTick()
void ipcpTick | ( | PppContext * | context | ) |
◆ ipcpZeroRestartCount()
void ipcpZeroRestartCount | ( | PppContext * | context | ) |
Variable Documentation
◆ ipcpCallbacks
const PppCallbacks ipcpCallbacks |
IPCP FSM callbacks.