radius_put_int

(PECL radius >= 1.1.0)

radius_put_intAdjunta un atributo entero

Descripción

radius_put_int(
    resource $radius_handle,
    int $type,
    int $value,
    int $options = 0,
    int $tag = ?
): bool

Adjunta un atributo entero a la petición RADIUS actual.

Nota:

Se debe crear una solicitud mediante radius_create_request() antes de llamar a esta función.

Parámetros

radius_handle

El recurso RADIUS.

type

El tipo de atributo.

value

El valor del atributo.

options

Una máscara de bits de las opciones de atributo. Las opciones disponibles incluyen RADIUS_OPTION_TAGGED y RADIUS_OPTION_SALT.

tag

LA etiqueta de atributo. Este parámetro es ignorado a menos que la opción RADIUS_OPTION_TAGGED esté establecida.

Valores devueltos

Devuelve true en caso de éxito o false en caso de error.

Historial de cambios

Versión Descripción
PECL radius 1.3.0 Los parámetros options y tag han sido añadidos.

Ejemplos

Ejemplo #1 Ejemplo con radius_put_int()

<?php
if (!radius_put_int($res, RAD_FRAMED_PROTOCOL, RAD_PPP)) {
echo
'Error Radius :' . radius_strerror($res). "\n<br />";
exit;
}
?>

Ver también

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top