Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

radius_put_vendor_int(3) [php man page]

RADIUS_PUT_VENDOR_INT(3)						 1						  RADIUS_PUT_VENDOR_INT(3)

radius_put_vendor_int - Attaches a vendor specific integer attribute

SYNOPSIS
bool radius_put_vendor_int (resource $radius_handle, int $vendor, int $type, int $value, [int $options], [int $tag]) DESCRIPTION
Attaches a vendor specific integer attribute to the current RADIUS request. Note A request must be created via radius_create_request(3) before this function can be called. PARAMETERS
o $radius_handle -The RADIUS resource. o $vendor -The vendor ID. o $type -The attribute type. o $value - The attribute value. o $options -A bitmask of the attribute options. The available options include RADIUS_OPTION_TAGGED and RADIUS_OPTION_SALT. o $tag -The attribute tag. This parameter is ignored unless the RADIUS_OPTION_TAGGED option is set. RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+------------------+-----------------------------------------------+ | Version | | | | | | | Description | | | | +------------------+-----------------------------------------------+ |PECL radius 1.3.0 | | | | | | | The $options and $tag parameters were added. | | | | +------------------+-----------------------------------------------+ SEE ALSO
radius_put_vendor_string(3). PHP Documentation Group RADIUS_PUT_VENDOR_INT(3)

Check Out this Related Man Page

RADIUS_PUT_VENDOR_STRING(3)						 1					       RADIUS_PUT_VENDOR_STRING(3)

radius_put_vendor_string - Attaches a vendor specific string attribute

SYNOPSIS
bool radius_put_vendor_string (resource $radius_handle, int $vendor, int $type, string $value, [int $options], [int $tag]) DESCRIPTION
Attaches a vendor specific string attribute to the current RADIUS request. In general, radius_put_vendor_attr(3) is a more useful function for attaching string attributes, as it is binary safe. Note A request must be created via radius_create_request(3) before this function can be called. PARAMETERS
o $radius_handle -The RADIUS resource. o $vendor -The vendor ID. o $type -The attribute type. o $value - The attribute value. This value is expected by the underlying library to be null terminated, therefore this parameter is not binary safe. o $options -A bitmask of the attribute options. The available options include RADIUS_OPTION_TAGGED and RADIUS_OPTION_SALT. o $tag -The attribute tag. This parameter is ignored unless the RADIUS_OPTION_TAGGED option is set. RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+------------------+-----------------------------------------------+ | Version | | | | | | | Description | | | | +------------------+-----------------------------------------------+ |PECL radius 1.3.0 | | | | | | | The $options and $tag parameters were added. | | | | +------------------+-----------------------------------------------+ SEE ALSO
radius_put_vendor_int(3). PHP Documentation Group RADIUS_PUT_VENDOR_STRING(3)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Taking a particular attribute's value in a file...

HI, Iam new to scripting..I need some guidance for invoking the following logic.. My input file contains Event Time = Thu, Nov 6, 2008 08:41:56 AM Probable Cause = UnspecifiedReason Specific Problems = BTS down due to Tx ... (16 Replies)
Discussion started by: Llb
16 Replies

2. UNIX for Dummies Questions & Answers

vendor of physical host with Solaris OS

I have a machine with Solaris OS 10 installed. What command/file can give me the vendor of physical machine. I have a machine with AIX OS installed. What command/file can give me the vendor of physical machine. I have a machine with Linux OS installed. What command/file can give... (1 Reply)
Discussion started by: epriya2003
1 Replies

3. Shell Programming and Scripting

Landing location after FTP.

Hi, I have a requirement that my server receives files from a third party. For this a new user(vendor) has been created and given to the vendor with the default home directory as /home/vendor on my server where he will be placed as soon as he logs into my server. Due to space issues on /home I... (2 Replies)
Discussion started by: bubba27
2 Replies

4. Solaris

Verify Hard Drive was swapped

I recently had a vendor hot-swap a faulty hard drive on my system. The fault was determined before there were any noticeable errors with regular operation on the user end. The vendor claims to have replaced the faulty hard drive. Is there a way to verify that the hard drive has been replaced? I... (3 Replies)
Discussion started by: MaindotC
3 Replies

5. UNIX for Dummies Questions & Answers

How to use xml_grep to get the value of an attribute?

I'm using xml_grep command to get the value of different tags in a xml-file. No i also need the value of an attribute in a tag. Can I use xml_grep for this? Does anybody know how? ex. : <Name xmlns:xsi="http://www.w3.org/2001/XMLinst" xsi:spaceSchema="Name_5879.xsd"> ... </Name> I... (1 Reply)
Discussion started by: pistach
1 Replies