PHP 8.3.4 Released!

radius_put_vendor_attr

(PECL radius >= 1.1.0)

radius_put_vendor_attrAttaches a vendor specific binary attribute

Descripción

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

Attaches a vendor specific binary attribute to the current RADIUS request.

Nota:

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

Parámetros

radius_handle

El recurso RADIUS.

vendor

El ID del vendedor.

type

El tipo de atributo.

value

The attribute value, which will be treated as a raw binary string.

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 The options and tag parameters were added.

Ejemplos

Ejemplo #1 radius_put_vendor_attr() example

<?php
if (!radius_put_vendor_attr($res, RADIUS_VENDOR_MICROSOFT, RAD_MICROSOFT_MS_CHAP_CHALLENGE, $challenge)) {
echo
'RadiusError:' . 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