ldaprebind.h

来自「ldap服务器源码」· C头文件 代码 · 共 27 行

H
27
字号
/* * Copyright 2000, OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */#ifndef LDAP_REBIND_H#define LDAP_REBIND_H#include <string>#include <LDAPRebindAuth.h>/** * Just an abstract class to provide a mechnism for rebind to another * server when chasing referrals. Clients have to implement a class * derived from this. To use authentication other than anonymous for * referral chasing */class LDAPRebind{    public:        virtual ~LDAPRebind() {}        virtual LDAPRebindAuth* getRebindAuth(const std::string& hostname,                 int port) const = 0;};#endif //LDAP_REBIND_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?