📄 cimservera.h
字号:
//%2006//////////////////////////////////////////////////////////////////////////// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;// IBM Corp.; EMC Corporation, The Open Group.// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;// EMC Corporation; VERITAS Software Corporation; The Open Group.// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;// EMC Corporation; Symantec Corporation; The Open Group.//// Permission is hereby granted, free of charge, to any person obtaining a copy// of this software and associated documentation files (the "Software"), to// deal in the Software without restriction, including without limitation the// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or// sell copies of the Software, and to permit persons to whom the Software is// furnished to do so, subject to the following conditions:// // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.////==============================================================================//// Author: Ben Heilbronn, Hewlett-Packard Company(ben_heilbronn@hp.com)//// Parts of this code originated within PAMBasicAuthenticator.//// Modified By: Sushma Fernandes, Hewlett-Packard Company(sushma_fernandes@hp.com) ////%/////////////////////////////////////////////////////////////////////////////#ifndef Pegasus_Cimservera_h#define Pegasus_Cimservera_hPEGASUS_NAMESPACE_BEGIN/** This class provides PAM basic authentication implementation on its own*/class Cimservera{public: // Indicates that an authentication operation be performed. static const char OPERATION_PAM_AUTHENTICATION; // Indicates that an account management operation be performed. static const char OPERATION_PAM_ACCT_MGMT; // Indicates that authentication/account management operation was successful. static const char PAM_OPERATION_SUCCESS; // Indicates that authentication/account management operation failed. static const char PAM_OPERATION_FAILURE; /** constructor. */ Cimservera(); /** destructor. */ ~Cimservera(); /** PAM Call back function, the pointer to this function is passed to the PAM module. @param num_msg int containing the message count @param msg pointer to a pam_message structure @param resp pointer to a pam_respone structure @param appdata_prt application data pointer @return PAM_SUCCESS on successful execution, a PAM error code otherwise */ static Sint32 PAMCallback( Sint32 num_msg, #if defined (PEGASUS_OS_LINUX) && defined(PEGASUS_PAM_AUTHENTICATION) const struct pam_message **msg,#else struct pam_message **msg,#endif struct pam_response **resp, void *appdata_ptr); static Boolean authenticateByPAM( const String& userName, const String& password); /** Verify PAM account management for the requesting user. @param userName String containing the user name @return true on successful authentication, false otherwise */ static Boolean performAcctMgmt (const String& userName);private:};PEGASUS_NAMESPACE_END#endif /* Pegasus_Cimservera_h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -