1GSSAPI::OID::Set(3) User Contributed Perl Documentation GSSAPI::OID::Set(3)
2
3
4
6 GSSAPI::OID::Set - methods for handling sets of GSSAPI OIDs, and some
7 constant OID sets.
8
10 use GSSAPI;
11
12 $oidset = GSSAPI::OID::Set->new;
13
14 $status = $oidset->insert($oid);
15 $status = $oidset->contains($oid, $isthere);
16 if ($status && $isthere) {
17 # blah blah blah
18 }
19
21 "GSSAPI::OID::Set" objects are simple sets of GSSAPI:OIDs (duh).
22
24 There's no way to list the OIDs in a set; you can only check to see if
25 a particular one is present. This is really a bug in the C API, so any
26 fix would be implementation specific.
27
29 Philip Guenther <pguen@cpan.org>
30
32 perl(1) GSSAPI(3p) GSSAPI::OID(3p) RFC2743
33
34
35
36perl v5.32.1 2021-01-27 GSSAPI::OID::Set(3)