ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). |
GSSAPI::OID::Set(3) User Contributed Perl Documentation GSSAPI::OID::Set(3) NAME GSSAPI::OID::Set - methods for handling sets of GSSAPI OIDs, and some constant OID sets. SYNOPSIS use GSSAPI; $oidset = GSSAPI::OID::Set->new; $status = $oidset->insert($oid); $status = $oidset->contains($oid, $isthere); if ($status && $isthere) { # blah blah blah } DESCRIPTION "GSSAPI::OID::Set" objects are simple sets of GSSAPI:OIDs (duh). BUGS There's no way to list the OIDs in a set; you can only check to see if a particular one is present. This is really a bug in the C API, so any fix would be implementation specific. AUTHOR Philip Guenther <pguen@cpan.org> SEE ALSO perl(1) GSSAPI(3p) GSSAPI::OID(3p) RFC2743 perl v5.8.8 2006-03-07 GSSAPI::OID::Set(3) |
|