File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change 18
18
# well with our approach.
19
19
#
20
20
# Currently, we only support controls on SearchResult.
21
+ #
22
+ # http://tools.ietf.org/html/rfc4511#section-4.1.1
23
+ # http://tools.ietf.org/html/rfc4511#section-4.1.9
21
24
class Net ::LDAP ::PDU
22
25
class Error < RuntimeError ; end
23
26
24
- ##
25
- # This message packet is a bind request.
27
+ # http://tools.ietf.org/html/rfc4511#section-4.2
26
28
BindRequest = 0
29
+ # http://tools.ietf.org/html/rfc4511#section-4.2.2
27
30
BindResult = 1
31
+ # http://tools.ietf.org/html/rfc4511#section-4.3
28
32
UnbindRequest = 2
33
+ # http://tools.ietf.org/html/rfc4511#section-4.5.1
29
34
SearchRequest = 3
35
+ # http://tools.ietf.org/html/rfc4511#section-4.5.2
30
36
SearchReturnedData = 4
31
37
SearchResult = 5
38
+ SearchResultReferral = 19
39
+ # http://tools.ietf.org/html/rfc4511#section-4.6
40
+ ModifyRequest = 6
32
41
ModifyResponse = 7
42
+ # http://tools.ietf.org/html/rfc4511#section-4.7
43
+ AddRequest = 8
33
44
AddResponse = 9
45
+ # http://tools.ietf.org/html/rfc4511#section-4.8
46
+ DeleteRequest = 10
34
47
DeleteResponse = 11
48
+ # http://tools.ietf.org/html/rfc4511#section-4.9
49
+ ModifyRDNRequest = 12
35
50
ModifyRDNResponse = 13
36
- SearchResultReferral = 19
51
+ # http://tools.ietf.org/html/rfc4511#section-4.12
37
52
ExtendedRequest = 23
38
53
ExtendedResponse = 24
39
54
You can’t perform that action at this time.
0 commit comments