Created
May 19, 2015 09:25
-
-
Save schaary/7a4f310c1cd83626f126 to your computer and use it in GitHub Desktop.
ldap search result example in elixir using eldap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:ok, | |
{:eldap_search_result, | |
[{:eldap_entry, 'uid=elvis,ou=mail,o=abc,c=de', | |
[{'uid', ['elvis']}, {'mail', ['[email protected]']}, | |
{'givenName', ['Elvis Aaron']}, {'cn', ['Elvis Aaron Presley']}, | |
{'carLicense', ['1a2b3c']}, {'sn', ['Presley']}]}], []}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment