PHP 8.5.0 Alpha 2 available for testing

radius_put_vendor_int

(PECL radius >= 1.1.0)

radius_put_vendor_intAdjunta un atributo entero a un proveedor específico

Descripción

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

Adjunta un atributo específico al proveedor en la petición RADIUS actual.

Parámetros

radius_handle

El recurso RADIUS.

vendor

El identificador del proveedor.

type

El tipo de atributo.

value

El valor del atributo.

options

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

tag

La etiqueta del atributo. Este parámetro es ignorado mientras que la opción RADIUS_OPTION_TAGGED esté definida.

Valores devueltos

Esta función retorna true en caso de éxito o false si ocurre un error.

Historial de cambios

Versión Descripción
PECL radius 1.3.0 Se han añadido los argumentos options y tag.

Ver también

add a note

User Contributed Notes

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