Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include "gwlib/gwlib.h"
#include "gwlib/dict.h"
#include "radius_attributes.def"
#include "radius_pdu.def"
Go to the source code of this file.
Data Structures | |
struct | RADIUS_PDU |
Macros | |
#define | ATTR(attr, type, string, min, max) |
#define | UNASSIGNED(attr) |
#define | ATTRIBUTES(fields) |
#define | INTEGER(name, octets) |
#define | OCTETS(name, field_giving_octets) |
#define | PDU(name, id, fields) name = id, |
#define | ATTR(attr, type, string, min, max) |
#define | UNASSIGNED(attr) |
#define | ATTRIBUTES(fields) |
#define | INTEGER(name, octets) unsigned long name; |
#define | NULTERMINATED(name, max_octets) Octstr *name; |
#define | OCTETS(name, field_giving_octets) Octstr *name; |
#define | PDU(name, id, fields) struct name { fields } name; |
Typedefs | |
typedef struct RADIUS_PDU | RADIUS_PDU |
Enumerations | |
enum | { t_int, t_string, t_ipaddr } |
enum | { ATTRIBUTES, ATTRIBUTES } |
Functions | |
RADIUS_PDU * | radius_pdu_create (int type, RADIUS_PDU *req) |
void | radius_pdu_destroy (RADIUS_PDU *pdu) |
int | radius_authenticate_pdu (RADIUS_PDU *pdu, Octstr **data, Octstr *secret) |
Octstr * | radius_pdu_pack (RADIUS_PDU *pdu) |
RADIUS_PDU * | radius_pdu_unpack (Octstr *data_without_len) |
void | radius_pdu_dump (RADIUS_PDU *pdu) |
Octstr * | radius_get_attribute (RADIUS_PDU *pdu, Octstr *attribute) |
Definition at line 95 of file radius_pdu.h.
Definition at line 95 of file radius_pdu.h.
#define ATTRIBUTES | ( | fields | ) |
Definition at line 97 of file radius_pdu.h.
#define ATTRIBUTES | ( | fields | ) |
Definition at line 97 of file radius_pdu.h.
#define INTEGER | ( | name, | |
octets | |||
) |
#define OCTETS | ( | name, | |
field_giving_octets | |||
) |
#define UNASSIGNED | ( | attr | ) |
Definition at line 96 of file radius_pdu.h.
#define UNASSIGNED | ( | attr | ) |
Definition at line 96 of file radius_pdu.h.
typedef struct RADIUS_PDU RADIUS_PDU |
Definition at line 89 of file radius_pdu.h.
anonymous enum |
Enumerator | |
---|---|
t_int | |
t_string | |
t_ipaddr |
Definition at line 72 of file radius_pdu.h.
anonymous enum |
int radius_authenticate_pdu | ( | RADIUS_PDU * | pdu, |
Octstr ** | data, | ||
Octstr * | secret | ||
) |
Definition at line 416 of file radius_pdu.c.
References md5(), octstr_append(), octstr_append_data(), octstr_compare(), octstr_copy, octstr_delete(), octstr_destroy(), octstr_duplicate, octstr_insert(), octstr_len(), RADIUS_PDU::type, and RADIUS_PDU::u.
Referenced by main(), proxy_thread(), and server().
Octstr* radius_get_attribute | ( | RADIUS_PDU * | pdu, |
Octstr * | attribute | ||
) |
Definition at line 498 of file radius_pdu.c.
References RADIUS_PDU::attr, dict_get(), and gw_assert().
RADIUS_PDU* radius_pdu_create | ( | int | type, |
RADIUS_PDU * | req | ||
) |
Definition at line 123 of file radius_pdu.c.
References error(), RADIUS_PDU::type, and type.
Referenced by main(), proxy_thread(), radius_pdu_unpack(), and server().
void radius_pdu_destroy | ( | RADIUS_PDU * | pdu | ) |
Definition at line 156 of file radius_pdu.c.
References error(), and RADIUS_PDU::type.
Referenced by main(), proxy_thread(), and server().
void radius_pdu_dump | ( | RADIUS_PDU * | pdu | ) |
Octstr* radius_pdu_pack | ( | RADIUS_PDU * | pdu | ) |
Definition at line 237 of file radius_pdu.c.
References append_encoded_integer(), error(), gw_assert(), octstr_create, octstr_delete(), octstr_destroy(), octstr_insert(), octstr_len(), and RADIUS_PDU::type.
Referenced by main(), proxy_thread(), and server().
RADIUS_PDU* radius_pdu_unpack | ( | Octstr * | data_without_len | ) |
Definition at line 360 of file radius_pdu.c.
References debug(), decode_integer(), error(), octstr_destroy(), octstr_dump_short(), octstr_len(), parse_context_create(), parse_context_destroy(), parse_get_char(), parse_get_octets(), parse_skip(), radius_pdu_create(), and type.
Referenced by main(), proxy_thread(), and server().