Sponsored Content
Full Discussion: Certification
Top Forums UNIX for Advanced & Expert Users Certification Post 302188600 by Yogesh Sawant on Thursday 24th of April 2008 02:37:51 AM
Old 04-24-2008
Have you searched at Internet? like this one?
 

10 More Discussions You Might Find Interesting

1. Cybersecurity

Certification

are there any unix certification's on security, and which is the most best one to take? (2 Replies)
Discussion started by: lealyz
2 Replies

2. Programming

C Certification

I would like to become certified in C/C++ and UNIX. Can anyone assist by giving links or details of the best track I could take. (1 Reply)
Discussion started by: Lucky Luke
1 Replies

3. AIX

Certification

Hi, I know this may not be the right place to put this but i wanted to know if there is any AIX certification avialable or something similar . Or is there any general Unix certification . TIA Anubha (1 Reply)
Discussion started by: asinha63
1 Replies

4. HP-UX

Unix Certification

Which certification I can go for?? (1 Reply)
Discussion started by: bharat.techie
1 Replies

5. UNIX for Dummies Questions & Answers

Which certification

I'm learning UNIX on my Mac (BSD) and quite like it. I'm a newbie, but I think I'd like to eventually find some work with UNIX/LINUX. But I'm not sure where to begin -- there are so many versions and job options, it's kind of overwhelming. A friend suggested learning Debian to start out with... (3 Replies)
Discussion started by: Straitsfan
3 Replies

6. Red Hat

Need help for RHCE certification ?

Hi , Kindly I wonder whether have any idea about the difference between RedHat & Centos operating systems ? I totally know that Centos is a derivative of Redhat but I'm talking about the similarity in terms of administration ( are the commands same?) for instance If someone had installed Centos... (2 Replies)
Discussion started by: arm
2 Replies

7. UNIX for Dummies Questions & Answers

can i do AIX certification..

Hi all, I heard abt AIX course, is it good for my carrer?..:confused: I am a Bsc graduate.. Thanks in advance.. (1 Reply)
Discussion started by: gowtham16
1 Replies

8. Shell Programming and Scripting

Certification course

Good afternnon i've got a question: Does anybody know if there is a course or link that i can take and then take a good and qualified certification course related to unix programim¡ng and scripting ? Id appreciate your help in advanced ---------- Post updated at 01:56 PM ----------... (1 Reply)
Discussion started by: alexcol
1 Replies

9. HP-UX

HP-UX certification

Hi, In my current organist I am using HP-UX. I would like to get certified in UNIX but i am not sure for which certification i should go. I am thinking of either Solaris or HP-UX. Please guide me which would be better for me? And also let me what study materials should i use and the Fees... (3 Replies)
Discussion started by: ManishV
3 Replies

10. What is on Your Mind?

The Benefits or Not of Certification (was LPIC certification)

Hi guys, What do you think about these certifications? (18 Replies)
Discussion started by: Luca.Francesca
18 Replies
ldap_url(3LDAP) 					      LDAP Library Functions						   ldap_url(3LDAP)

NAME
ldap_url, ldap_is_ldap_url, ldap_url_parse, ldap_url_parse_nodn, ldap_free_urldesc, ldap_url_search, ldap_url_search_s, ldap_url_search_st, ldap_dns_to_url, ldap_dn_to_url - LDAP Uniform Resource Locator functions SYNOPSIS
cc[ flag... ] file... -lldap[ library... ] #include <lber.h> #include <ldap.h> int ldap_is_ldap_url(char *url); int ldap_url_parse(char *url, LDAPURLDesc **ludpp); int ldap_url_parse_nodn(char *url, LDAPURLDesc **ludpp); ldap_free_urldesc(LDAPURLDesc *ludp); int ldap_url_search(LDAP *ld, char *url, int attrsonly); int ldap_url_search_s(LDAP *ld, char *url, int attrsonly, LDAPMessage **res); int ldap_url_search_st(LDAP *ld, char *url, int attrsonly, struct timeval *timeout, LDAPMessage **res); char *ldap_dns_to_url(LDAP *ld, char *dns_name, char *attrs, char *scope, char *filter); char *ldap_dn_to_url(LDAP *ld, char *dn, int nameparts); DESCRIPTION
These functions support the use of LDAP URLs (Uniform Resource Locators). The following shows the formatting used for LDAP URLs. ldap://hostport/dn[?attributes[?scope[?filter]]] where: hostport Host name with an optional :portnumber. dn Base DN to be used for an LDAP search operation. attributes Comma separated list of attributes to be retrieved. scope One of these three strings: base one sub (default=base). filter LDAP search filter as used in a call to ldap_search(3LDAP). The following is an example of an LDAP URL: ldap://ldap.itd.umich.edu/c=US?o,description?one?o=umich URLs preceded URL: or wrapped in angle-brackets are tolerated. URLs can also be preceded by URL: and wrapped in angle-brackets. ldap_is_ldap_url() returns a non-zero value if url looks like an LDAP URL (as opposed to some other kind of URL). It can be used as a quick check for an LDAP URL; the ldap_url_parse() function should be used if a more thorough check is needed. ldap_url_parse() breaks down an LDAP URL passed in url into its component pieces. If successful, zero is returned, an LDAP URL description is allocated, filled in, and ludpp is set to point to it. See RETURN VALUES for values returned upon error. ldap_url_parse_nodn() acts just like ldap_url_parse() but does not require dn in the LDAP URL. ldap_free_urldesc() should be called to free an LDAP URL description that was obtained from a call to ldap_url_parse(). ldap_url_search() initiates an asynchronous LDAP search based on the contents of the url string. This function acts just like ldap_search(3LDAP) except that many search parameters are pulled out of the URL. ldap_url_search_s() performs a synchronous LDAP search based on the contents of the url string. This function acts just like ldap_search_s(3LDAP) except that many search parameters are pulled out of the URL. ldap_url_search_st() performs a synchronous LDAP URL search with a specified timeout. This function acts just like ldap_search_st(3LDAP) except that many search parameters are pulled out of the URL. ldap_dns_to_url() locates the LDAP URL associated with a DNS domain name. The supplied DNS domain name is converted into a distinguished name. The directory entry specified by that distinguished name is searched for a labeled URI attribute. If successful then the correspond- ing LDAP URL is returned. If unsuccessful then that entry's parent is searched and so on until the target distinguished name is reduced to only two nameparts. If dns_name is NULL then the environment variable LOCALDOMAIN is used. If attrs is not NULL then it is appended to the URL's attribute list. If scope is not NULL then it overrides the URL's scope. If filter is not NULL then it is merged with the URL's fil- ter. If an error is encountered then zero is returned, otherwise a string URL is returned. The caller should free the returned string if it is non-zero. ldap_dn_to_url() locates the LDAP URL associated with a distinguished name. The number of nameparts in the supplied distinguished name must be provided. The specified directory entry is searched for a labeledURI attribute. If successful then the LDAP URL is returned. If unsuc- cessful then that entry's parent is searched and so on until the target distinguished name is reduced to only two nameparts. If an error is encountered then zero is returned, otherwise a string URL is returned. The caller should free the returned string if it is non-zero. RETURN VALUES
Upon error, one of these values is returned for ldap_url_parse(): LDAP_URL_ERR_BADSCOPE URL scope string is invalid. LDAP_URL_ERR_HOSTPORT URL hostport is invalid. LDAP_URL_ERR_MEM Can't allocate memory space. LDAP_URL_ERR_NODN URL has no DN (required). LDAP_URL_ERR_NOTLDAP URL doesn't begin with ldap://. ATTRIBUTES
See attributes(5) for a description of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | |Interface Stability |Evolving | +-----------------------------+-----------------------------+ SEE ALSO
ldap(3LDAP), ldap_search(3LDAP), attributes(5) An LDAP URL Format, Tim Howes and Mark Smith, December 1995. Internet Draft (work in progress). Currently available at this URL. ftp://ds.internic.net/internet-drafts/draft-ietf-asid-ldap-format-03.txt SunOS 5.11 02 Dec 2003 ldap_url(3LDAP)
All times are GMT -4. The time now is 12:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy