Buffer set utilities.
Buffer Set Utilities.
Functions in this group provide utilities for creating, modifying, and freeing a buffer set.
Add a buffer to a buffer set. This function allocates a new gss_buffer_t, initializes it with the values in the member_buffer parameter.
Parameters:
minor_status The minor status returned by this function. This parameter will be 0 upon success.
member_buffer Buffer to insert into the buffer set.
buffer_set Pointer to a initialized buffer set structure.
Return values:
GSS_S_COMPLETE Success
GSS_S_FAILURE Failure
See also:
gss_create_empty_buffer_set
gss_release_buffer_set
Create a empty buffer set. This function allocates and initializes a empty buffer set. The memory allocated in this function should be freed by a call to gss_release_buffer_set.
Parameters:
minor_status The minor status returned by this function. This parameter will be 0 upon success.
buffer_set Pointer to a buffer set structure.
Return values:
GSS_S_COMPLETE Success
GSS_S_FAILURE Failure
See also:
gss_add_buffer_set_member
gss_release_buffer_set
Free a Buffer Set. This function will free all memory associated with a buffer set. Note that it will also free all memory associated with the buffers int the buffer set.
Parameters:
minor_status The minor status returned by this function. This parameter will be 0 upon success.
buffer_set Pointer to a buffer set structure. This pointer will point at a NULL value upon return.
Return values:
GSS_S_COMPLETE Success
GSS_S_FAILURE Failure
See also:
gss_create_empty_buffer_set
gss_add_buffer_set_member
Generated automatically by Doxygen for globus_gssapi_gsi from the source code.