Class GSSAPI::LibGSSAPI::GssIOVBufferDesc
In: lib/gssapi/lib_gssapi.rb
Parent: FFI::Struct

@example

  iov_buff = GssIOVBufferDesc.new
  str = FFI::MemoryPointer.from_string("This is the string")
  iov_buff[:type] = 1
  iov_buff[:buffer][:length] = str.size
  iov_buff[:buffer][:value] = str

[Validate]