Update of /cvsroot/perl-ldap/ldap/lib/Net/LDAP
In directory sc8-pr-cvs1:/tmp/cvs-serv16665/lib/Net/LDAP
Modified Files:
Constant.pm
Log Message:
Add into the pod all the constants that were defined as subs before
Index: Constant.pm
===================================================================
RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP/Constant.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Constant.pm 8 May 2003 09:27:40 -0000 1.6
+++ Constant.pm 8 May 2003 12:53:08 -0000 1.7
@@ -16,9 +16,13 @@
_find(@_);
my $oops;
foreach my $sym (@_) {
- my $sub = $const{$sym}
- or ++$oops, carp(qq["$sym" is not exported by the Net::LDAP::Constant module]);
- *{$callpkg . "::$sym"} = $sub;
+ if (my $sub = $const{$sym}) {
+ *{$callpkg . "::$sym"} = $sub;
+ }
+ else {
+ ++$oops;
+ carp(qq["$sym" is not exported by the Net::LDAP::Constant module]);
+ }
}
croak("Can't continue after import errors") if $oops;
}
@@ -159,6 +163,10 @@
Unrecognized SASL mechanism name
+=item LDAP_STRONG_AUTH_NOT_SUPPORTED (7)
+
+Unrecognized SASL mechanism name
+
=item LDAP_STRONG_AUTH_REQUIRED (8)
The server requires authentication be performed with a SASL mechanism
@@ -430,6 +438,34 @@
=back
=head2 Control OIDs
+
+=item LDAP_CONTROL_SORTREQUEST (1.2.840.113556.1.4.473)
+
+=item LDAP_CONTROL_SORTRESULT (1.2.840.113556.1.4.474)
+
+=item LDAP_CONTROL_VLVREQUEST (2.16.840.1.113730.3.4.9)
+
+=item LDAP_CONTROL_VLVRESPONSE (2.16.840.1.113730.3.4.10)
+
+=item LDAP_CONTROL_PROXYAUTHENTICATION (2.16.840.1.113730.3.4.12)
+
+=item LDAP_CONTROL_PAGED (1.2.840.113556.1.4.319)
+
+=item LDAP_CONTROL_TREE_DELETE (1.2.840.113556.1.4.805)
+
+=item LDAP_CONTROL_MATCHEDVALS (1.2.826.0.1.3344810.2.2)
+
+=item LDAP_CONTROL_MANAGEDSAIT (2.16.840.1.113730.3.4.2)
+
+=item LDAP_CONTROL_PERSISTENTSEARCH (2.16.840.1.113730.3.4.3)
+
+=item LDAP_CONTROL_ENTRYCHANGE (2.16.840.1.113730.3.4.7)
+
+=item LDAP_CONTROL_PWEXPIRED (2.16.840.1.113730.3.4.4)
+
+=item LDAP_CONTROL_PWEXPIRING (2.16.840.1.113730.3.4.5)
+
+=item LDAP_CONTROL_REFERRALS (1.2.840.113556.1.4.616)
=head2 Extension OIDs
|