logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

GSSAPI::OID::Set - methods for handling sets of GSSAPI OIDs, and some constant OID sets.

Author

Philip Guenther <pguen@cpan.org>

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.

Description

"GSSAPI::OID::Set" objects are simple sets of GSSAPI:OIDs (duh).

Name

GSSAPI::OID::Set - methods for handling sets of GSSAPI OIDs, and some constant OID sets.

See Also

perl(1) GSSAPI(3p) GSSAPI::OID(3p) RFC2743 perl v5.40.0 2024-10-20 GSSAPI::OID::Set(3pm)

Synopsis

use GSSAPI; $oidset = GSSAPI::OID::Set->new; $status = $oidset->insert($oid); $status = $oidset->contains($oid, $isthere); if ($status && $isthere) { # blah blah blah }

See Also