⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ldaprebind.h

📁 OpenLdap是LDAP的开源项目
💻 H
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -