(PECL radius >= 1.1.0)
radius_put_vendor_attr — Attaches a vendor specific binary attribute
$radius_handle
   , int $vendor
   , int $type
   , string $value
   [, int $options = 0
   [, int $tag
  ]] ) : boolAttaches 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.
radius_handleEl recurso RADIUS.
vendorEl ID del vendedor.
typeEl tipo de atributo.
valueThe attribute value, which will be treated as a raw binary string.
optionsUna máscara de bits de las opciones de atributo. Las opciones disponibles incluyen RADIUS_OPTION_TAGGED y RADIUS_OPTION_SALT.
tagLA etiqueta de atributo. Este parámetro es ignorado a menos que la opción RADIUS_OPTION_TAGGED esté establecida.
   Devuelve TRUE en caso de éxito o FALSE en caso de error.
  
| Versión | Descripción | 
|---|---|
| PECL radius 1.3.0 | The optionsandtagparameters were added. | 
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;
}
?>