radius_put_vendor_string
(PECL radius >= 1.1.0)
radius_put_vendor_string — Attaches a vendor specific string attribute
Descripción
$radius_handle
, int $vendor
, int $type
, string $value
[, int $options = 0
[, int $tag
]] )Attaches a vendor specific string attribute to the current RADIUS request. In general, radius_put_vendor_attr() is a more useful function for attaching string attributes, as it is binary safe.
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. This value is expected by the underlying library to be null terminated, therefore this parameter is not binary safe.
-
options -
Una máscara de bits de las opciones de atributo. Las opciones disponibles incluyen
RADIUS_OPTION_TAGGEDyRADIUS_OPTION_SALT. -
tag -
LA etiqueta de atributo. Este parámetro es ignorado a menos que la opción
RADIUS_OPTION_TAGGEDesté 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.
|