ldapexception.cpp

来自「ldap服务器源码」· C++ 代码 · 共 64 行

CPP
64
字号
/* * Copyright 2000, OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */#include <ldap.h>#include "config.h"#include "LDAPException.h"#include "LDAPReferralException.h"#include "LDAPAsynConnection.h"using namespace std;LDAPException::LDAPException(int res_code, const string& err_string){	m_res_code=res_code;	m_res_string=string(ldap_err2string(res_code));    m_err_string=err_string;}LDAPException::LDAPException(const LDAPAsynConnection *lc){    LDAP *l = lc->getSessionHandle();    ldap_get_option(l,LDAP_OPT_ERROR_NUMBER,&m_res_code);    const char *res_cstring = ldap_err2string(m_res_code);    if ( res_cstring ) {        m_res_string = string(res_cstring);    } else {        m_res_string = "";    }    const char* err_string;    ldap_get_option(l,LDAP_OPT_ERROR_STRING,&err_string);    if ( err_string ) {        m_res_string = string(err_string);    } else {        m_res_string = "";    }}LDAPException::~LDAPException(){}int LDAPException::getResultCode() const{	return m_res_code;}const string& LDAPException::getResultMsg() const{	return m_res_string;}const string& LDAPException::getServerMsg() const{    return m_err_string;}ostream& operator << (ostream& s, LDAPException e){	s << "Error " << e.m_res_code << ": " << e.m_res_string;	if (!e.m_err_string.empty()) {		s << endl <<  "additional info: " << e.m_err_string ;	}	return s;}

⌨️ 快捷键说明

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