[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: developing module that instantiates check_password() function
- To: openldap-technical@openldap.org
- Subject: Re: developing module that instantiates check_password() function
- From: Scott Koranda <skoranda@gmail.com>
- Date: Sat, 10 Aug 2013 11:54:01 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=wcIvh/iTY2J58T4daQvIF7frILJTUu4i9tiS26ZolbE=; b=W+r4ny/remxpzHiso3ApE5rnj/R+7XlU9DE2xJMNrZ/gVEq7m4CAaX+3RbE7dvKbcX N+RnybZTps/zOjBKnS4Grr+ZitwWETxKYippnipK5mxYnjlZ2a4dYv8SeaWCuVCYpUsc SyPW198yRrBXas0ROlGPyN3BYt7excAyZ2uGTic9xSf5Yo8GSzL0AX625AW4LjRkAQus 7ooipvu6FAqfOC8vfqzp38MKLj0khj9P/Yr1yz7CKtIvjRGPgTLbmUXVLTvnZs+7CzCF T6VGc0CRNeuQDrQHxRcT6lDIS7JEHfWhvNGGbVo9p8q0OlSk+yVlHhwIah8b7/AuB39q mkBQ==
- In-reply-to: <52065CAD.9060406@symas.com>
- References: <CALrnE=1aF22u6YGH=EUGeXbz8ZBFp81UvFOTHotnsMtY+dJ=yg@mail.gmail.com> <52065CAD.9060406@symas.com>
On Sat, Aug 10, 2013 at 10:30 AM, Howard Chu <hyc@symas.com> wrote:
> Scott Koranda wrote:
>>
>> Hello,
>>
>> I wish to develop a user-defined loadable module that instantiates the
>> check_password() function as described in the slapo-ppolicy man page.
>>
>> The man page specifies the function prototype as
>>
>> int check_password (char *pPasswd, char **ppErrStr, Entry *pEntry);
>>
>> In which header file is the 'Entry' type defined?
>
>
> In slap.h. You cannot develop any code for slapd without this header file.
>
Thank you.
Is this a correct statement?
When one develops a check_password() function as described in the slapo-ppolicy
man page one does not develop against header files installed as part
of an OpenLDAP
./configure, make depend, make install cycle but instead develops
against the OpenLDAP
code base as if developing for slapd.