如何获取pam_ldap中当前的PAM用户?
如何在 C/c++ 中获取 pam_ldap 验证的用户名? 我找到了“pam_get_user”API,但是如何获取该函数的pam_handle_t?
谢谢 DMA
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过调用以下方式获取句柄:
pamh
- 是上述 api 中的输出参数。请在此处查看更多详细信息。
You get the handle by calling:
pamh
- is an output parameter in above api.Check more details here.