how can I get the user name that auth by pam_ldap in C/c++? I found "pam_get_user" API, but how can I get the pam_handle_t for this function?

Thanks Dma

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You get the handle by calling:

int pam_start(const char *service_name, const char *user, 
              const struct pam_conv *pam_conversation, pam_handle_t **pamh); 

pamh - is an output parameter in above api.

Check more details here.

link|improve this answer
if I login through pam_ldap, how I can get current user info in a program? I don't know the paramater for pam_start. – dma Jun 23 '11 at 6:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.