Fetch the repository succeeded.
This action will force synchronization from 伤神小怪兽/HP-Socket, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/*
* Copyright: JessMA Open Source (ldcsaa@gmail.com)
*
* Author : Bruce Liang
* Website : https://github.com/ldcsaa
* Project : https://github.com/ldcsaa/HP-Socket
* Blog : http://www.cnblogs.com/ldcsaa
* Wiki : http://www.oschina.net/p/hp-socket
* QQ Group : 44636872, 75375912
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "../include/hpsocket/HPSocket-SSL.h"
#ifdef _SSL_SUPPORT
#include "TcpServer.h"
#include "TcpAgent.h"
#include "TcpClient.h"
#include "TcpPullServer.h"
#include "TcpPullClient.h"
#include "TcpPullAgent.h"
#include "TcpPackServer.h"
#include "TcpPackClient.h"
#include "TcpPackAgent.h"
#ifdef _HTTP_SUPPORT
#include "HttpServer.h"
#include "HttpAgent.h"
#include "HttpClient.h"
#endif
/*****************************************************************************************************************************************************/
/******************************************************************** SSL Exports ********************************************************************/
/*****************************************************************************************************************************************************/
HPSOCKET_API ITcpServer* HP_Create_SSLServer(ITcpServerListener* pListener)
{
return new CSSLServer(pListener);
}
HPSOCKET_API ITcpAgent* HP_Create_SSLAgent(ITcpAgentListener* pListener)
{
return new CSSLAgent(pListener);
}
HPSOCKET_API ITcpClient* HP_Create_SSLClient(ITcpClientListener* pListener)
{
return new CSSLClient(pListener);
}
HPSOCKET_API ITcpPullServer* HP_Create_SSLPullServer(ITcpServerListener* pListener)
{
return (ITcpPullServer*)(new CSSLPullServer(pListener));
}
HPSOCKET_API ITcpPullAgent* HP_Create_SSLPullAgent(ITcpAgentListener* pListener)
{
return (ITcpPullAgent*)(new CSSLPullAgent(pListener));
}
HPSOCKET_API ITcpPullClient* HP_Create_SSLPullClient(ITcpClientListener* pListener)
{
return (ITcpPullClient*)(new CSSLPullClient(pListener));
}
HPSOCKET_API ITcpPackServer* HP_Create_SSLPackServer(ITcpServerListener* pListener)
{
return (ITcpPackServer*)(new CSSLPackServer(pListener));
}
HPSOCKET_API ITcpPackAgent* HP_Create_SSLPackAgent(ITcpAgentListener* pListener)
{
return (ITcpPackAgent*)(new CSSLPackAgent(pListener));
}
HPSOCKET_API ITcpPackClient* HP_Create_SSLPackClient(ITcpClientListener* pListener)
{
return (ITcpPackClient*)(new CSSLPackClient(pListener));
}
HPSOCKET_API void HP_Destroy_SSLServer(ITcpServer* pServer)
{
delete pServer;
}
HPSOCKET_API void HP_Destroy_SSLAgent(ITcpAgent* pAgent)
{
delete pAgent;
}
HPSOCKET_API void HP_Destroy_SSLClient(ITcpClient* pClient)
{
delete pClient;
}
HPSOCKET_API void HP_Destroy_SSLPullServer(ITcpPullServer* pServer)
{
delete pServer;
}
HPSOCKET_API void HP_Destroy_SSLPullAgent(ITcpPullAgent* pAgent)
{
delete pAgent;
}
HPSOCKET_API void HP_Destroy_SSLPullClient(ITcpPullClient* pClient)
{
delete pClient;
}
HPSOCKET_API void HP_Destroy_SSLPackServer(ITcpPackServer* pServer)
{
delete pServer;
}
HPSOCKET_API void HP_Destroy_SSLPackAgent(ITcpPackAgent* pAgent)
{
delete pAgent;
}
HPSOCKET_API void HP_Destroy_SSLPackClient(ITcpPackClient* pClient)
{
delete pClient;
}
/*****************************************************************************************************************************************************/
/*************************************************************** Global Function Exports *************************************************************/
/*****************************************************************************************************************************************************/
HPSOCKET_API int __HP_CALL HP_SSL_DefaultServerNameCallback(LPCTSTR lpszServerName, PVOID pContext)
{
return CSSLContext::DefaultServerNameCallback(lpszServerName, pContext);
}
HPSOCKET_API void HP_SSL_RemoveThreadLocalState(THR_ID dwThreadID)
{
CSSLContext::RemoveThreadLocalState(dwThreadID);
}
/*****************************************************************************************************************************************************/
/******************************************************************** HTTPS Exports ******************************************************************/
/*****************************************************************************************************************************************************/
#ifdef _HTTP_SUPPORT
HPSOCKET_API IHttpServer* HP_Create_HttpsServer(IHttpServerListener* pListener)
{
return (IHttpServer*)(new CHttpsServer(pListener));
}
HPSOCKET_API IHttpAgent* HP_Create_HttpsAgent(IHttpAgentListener* pListener)
{
return (IHttpAgent*)(new CHttpsAgent(pListener));
}
HPSOCKET_API IHttpClient* HP_Create_HttpsClient(IHttpClientListener* pListener)
{
return (IHttpClient*)(new CHttpsClient(pListener));
}
HPSOCKET_API IHttpSyncClient* HP_Create_HttpsSyncClient(IHttpClientListener* pListener)
{
return (IHttpSyncClient*)(new CHttpsSyncClient(pListener));
}
HPSOCKET_API void HP_Destroy_HttpsServer(IHttpServer* pServer)
{
delete pServer;
}
HPSOCKET_API void HP_Destroy_HttpsAgent(IHttpAgent* pAgent)
{
delete pAgent;
}
HPSOCKET_API void HP_Destroy_HttpsClient(IHttpClient* pClient)
{
delete pClient;
}
HPSOCKET_API void HP_Destroy_HttpsSyncClient(IHttpSyncClient* pClient)
{
delete pClient;
}
#endif
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。