File: gssapi.rb

package info (click to toggle)
ruby-gssapi 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: ruby: 770; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
=begin
Copyright © 2010 Dan Wanek <dan.wanek@gmail.com>

Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
=end
require 'ffi'
module GSSAPI
  module LibGSSAPI
    extend FFI::Library
    FFI::add_typedef(:uint32, :OM_uint32)

    GSSAPI_LIB_TYPE = :mit unless defined?(GSSAPI_LIB_TYPE)
  end
end

require 'gssapi/exceptions'
require 'gssapi/lib_gssapi'
require 'gssapi/simple'