Skip to content

Commit 91cac8a

Browse files
committed
Add missing app IDs based on spec
1 parent 811aad8 commit 91cac8a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

lib/net/ldap/pdu.rb

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Error < RuntimeError; end
3535
# http://tools.ietf.org/html/rfc4511#section-4.5.2
3636
SearchReturnedData = 4
3737
SearchResult = 5
38-
SearchResultReferral = 19
38+
# see also SearchResultReferral (19)
3939
# http://tools.ietf.org/html/rfc4511#section-4.6
4040
ModifyRequest = 6
4141
ModifyResponse = 7
@@ -48,9 +48,18 @@ class Error < RuntimeError; end
4848
# http://tools.ietf.org/html/rfc4511#section-4.9
4949
ModifyRDNRequest = 12
5050
ModifyRDNResponse = 13
51+
# http://tools.ietf.org/html/rfc4511#section-4.10
52+
CompareRequest = 14
53+
CompareResponse = 15
54+
# http://tools.ietf.org/html/rfc4511#section-4.11
55+
AbandonRequest = 16
56+
# http://tools.ietf.org/html/rfc4511#section-4.5.2
57+
SearchResultReferral = 19
5158
# http://tools.ietf.org/html/rfc4511#section-4.12
5259
ExtendedRequest = 23
5360
ExtendedResponse = 24
61+
# unused: http://tools.ietf.org/html/rfc4511#section-4.13
62+
IntermediateResponse = 25
5463

5564
##
5665
# The LDAP packet message ID.

0 commit comments

Comments
 (0)