Class GSSAPI::LibGSSAPI::UnManagedGssBufferDesc
In: lib/gssapi/lib_gssapi.rb
Parent: GssUMStruct

This class implements the gss_buffer_desc type. Use pointer to emulate gss_buffer_t If you are setting the value of the buffer and it is not being set from the function this is the type of buffer you should use. If the buffer is being allocated and set inside the function you should use a ManagedGssBufferDesc instead so gss_release_buffer is called for it. It states in the manpage for each gss function whether or not gss_release_buffer needs to be called or not. @example

  buff = UnManagedGssBufferDesc.new
  buff.value = "This is a test"

Methods

new   value=  

Included Modules

GssBufferDescLayout

Public Class methods

Public Instance methods

Set the value of the string for the "value" parameter. This method also

  appropriately sets the length parameter.

[Validate]