Class: Krb5::Context
- Inherits:
-
Object
- Object
- Krb5::Context
- Defined in:
- ext/krb5_auth/context.c
Instance Method Summary (collapse)
-
- (Object) close
Closes the context object.
-
- (Object) Krb5Auth::Context.new
constructor
Creates and returns a new Krb5Auth::Context object.
Constructor Details
- (Object) Krb5Auth::Context.new
Creates and returns a new Krb5Auth::Context object.
This class is not typically instantiated directly, but is used internally by the krb5-auth library.
|
|
# File 'ext/krb5_auth/context.c'
/*
* call-seq:
* Krb5Auth::Context.new
*
* Creates and returns a new Krb5Auth::Context object.
*
* This class is not typically instantiated directly, but is used internally
* by the krb5-auth library.
*/
static VALUE rkrb5_context_initialize(VALUE self){
|
Instance Method Details
- (Object) close
Closes the context object.
|
|
# File 'ext/krb5_auth/context.c'
/*
* call-seq:
* context.close
*
* Closes the context object.
*/
static VALUE rkrb5_context_close(VALUE self){
|