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

📄 ldapsearchreference.h

📁 ldap服务器源码
💻 H
字号:
/* * Copyright 2000, OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */#ifndef LDAP_SEARCH_REFERENCE_H#define LDAP_SEARCH_REFERENCE_H #include <LDAPMessage.h>#include <LDAPUrlList.h>class LDAPRequest;class LDAPUrl;/** * This class is used to represent Continuation References that were * returned during a SEARCH-Operation. */class LDAPSearchReference : public LDAPMsg{    public :        /**         * Constructor that create an object from the C-API structures         */        LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg);        /**         * The Destructor         */        ~LDAPSearchReference();        /**         * @returns The destination URLs that were send with this message         */        const LDAPUrlList& getUrls() const;    private :        LDAPUrlList m_urlList;        LDAPSearchReference();};#endif //LDAP_SEARCH_REFERENCE_H

⌨️ 快捷键说明

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