aboutsummaryrefslogtreecommitdiffstats
path: root/lib/eldap/include/eldap.hrl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2012-03-29 09:32:44 +0200
committerDan Gudmundsson <[email protected]>2012-03-29 09:32:44 +0200
commitb26b7487259ada76a47ffefe21a3069d9e70ba4c (patch)
tree05dd0166dd91abac2baf717362e0d9d50b133b2f /lib/eldap/include/eldap.hrl
parentc068f4fa2b59cbdef069d826749186675c3d0ea5 (diff)
parent472a3d910595d7de1e49f241c1d241827b5c0bf4 (diff)
downloadotp-b26b7487259ada76a47ffefe21a3069d9e70ba4c.tar.gz
otp-b26b7487259ada76a47ffefe21a3069d9e70ba4c.tar.bz2
otp-b26b7487259ada76a47ffefe21a3069d9e70ba4c.zip
Merge branch 'maint'
Diffstat (limited to 'lib/eldap/include/eldap.hrl')
-rw-r--r--lib/eldap/include/eldap.hrl33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/eldap/include/eldap.hrl b/lib/eldap/include/eldap.hrl
new file mode 100644
index 0000000000..7c12cd4f2b
--- /dev/null
+++ b/lib/eldap/include/eldap.hrl
@@ -0,0 +1,33 @@
+-ifndef( _ELDAP_HRL ).
+-define( _ELDAP_HRL , 1 ).
+
+%%%
+%%% Search input parameters
+%%%
+-record(eldap_search, {
+ base = [], % Baseobject
+ filter = [], % Search conditions
+ scope=wholeSubtree, % Search scope
+ deref=derefAlways, % Dereference
+ attributes = [], % Attributes to be returned
+ types_only = false, % Return types+values or types
+ timeout = 0 % Timelimit for search
+ }).
+
+%%%
+%%% Returned search result
+%%%
+-record(eldap_search_result, {
+ entries = [], % List of #eldap_entry{} records
+ referrals = [] % List of referrals
+ }).
+
+%%%
+%%% LDAP entry
+%%%
+-record(eldap_entry, {
+ object_name = "", % The DN for the entry
+ attributes = [] % List of {Attribute, Value} pairs
+ }).
+
+-endif.