radius_debug.h File Reference

Data logging functions for debugging purpose (RADIUS) More...

#include "radius/radius.h"
#include "radius/radius_attributes.h"
#include "debug.h"

Go to the source code of this file.

Data Structures

struct  RadiusParamName
 Parameter value/name binding. More...
 

Functions

void radiusDumpPacket (const RadiusPacket *packet, size_t length)
 Dump RADIUS packet for debugging purpose. More...
 
void radiusDumpAttribute (const RadiusAttribute *attribute)
 Dump RADIUS attribute. More...
 
void radiusDumpInt32 (const uint8_t *data, size_t length)
 Dump an attribute containing a 32-bit integer. More...
 
void radiusDumpString (const uint8_t *data, size_t length)
 Dump an attribute containing a string. More...
 
void radiusDumpIpv4Addr (const uint8_t *data, size_t length)
 Dump an attribute containing an IPv4 address. More...
 
void radiusDumpIpv6Addr (const uint8_t *data, size_t length)
 Dump an attribute containing an IPv6 address. More...
 
void radiusDumpRawData (const uint8_t *data, size_t length)
 Dump an attribute containing raw data. More...
 
const char_tradiusGetParamName (uint_t value, const RadiusParamName *paramList, size_t paramListLen)
 Convert a parameter to string representation. More...
 

Detailed Description

Data logging functions for debugging purpose (RADIUS)

License

SPDX-License-Identifier: GPL-2.0-or-later

Copyright (C) 2022-2024 Oryx Embedded SARL. All rights reserved.

This file is part of CycloneEAP 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.0

Definition in file radius_debug.h.

Function Documentation

◆ radiusDumpAttribute()

void radiusDumpAttribute ( const RadiusAttribute attribute)

Dump RADIUS attribute.

Parameters
[in]attributePointer to the RADIUS attribute

Definition at line 307 of file radius_debug.c.

◆ radiusDumpInt32()

void radiusDumpInt32 ( const uint8_t *  data,
size_t  length 
)

Dump an attribute containing a 32-bit integer.

Parameters
[in]dataAttribute value
[in]lengthAttribute length

Definition at line 455 of file radius_debug.c.

◆ radiusDumpIpv4Addr()

void radiusDumpIpv4Addr ( const uint8_t *  data,
size_t  length 
)

Dump an attribute containing an IPv4 address.

Parameters
[in]dataAttribute value
[in]lengthAttribute length

Definition at line 500 of file radius_debug.c.

◆ radiusDumpIpv6Addr()

void radiusDumpIpv6Addr ( const uint8_t *  data,
size_t  length 
)

Dump an attribute containing an IPv6 address.

Parameters
[in]dataAttribute value
[in]lengthAttribute length

Definition at line 523 of file radius_debug.c.

◆ radiusDumpPacket()

void radiusDumpPacket ( const RadiusPacket packet,
size_t  length 
)

Dump RADIUS packet for debugging purpose.

Parameters
[in]packetPointer to the RADIUS packet
[in]lengthLength of the RADIUS packet, in bytes

Definition at line 259 of file radius_debug.c.

◆ radiusDumpRawData()

void radiusDumpRawData ( const uint8_t *  data,
size_t  length 
)

Dump an attribute containing raw data.

Parameters
[in]dataAttribute value
[in]lengthAttribute length

Definition at line 546 of file radius_debug.c.

◆ radiusDumpString()

void radiusDumpString ( const uint8_t *  data,
size_t  length 
)

Dump an attribute containing a string.

Parameters
[in]dataAttribute value
[in]lengthAttribute length

Definition at line 476 of file radius_debug.c.

◆ radiusGetParamName()

const char_t* radiusGetParamName ( uint_t  value,
const RadiusParamName paramList,
size_t  paramListLen 
)

Convert a parameter to string representation.

Parameters
[in]valueParameter value
[in]paramListList of acceptable parameters
[in]paramListLenNumber of entries in the list
Returns
NULL-terminated string describing the parameter

Definition at line 568 of file radius_debug.c.