1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/dev5-libx-msg-im-xsc

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
XmsgImLog.cpp 2.1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
xzwdev Отправлено 13.12.2019 17:52 caf68bd
/*
Copyright 2019 www.dev5.cn, Inc. dev5@qq.com
This file is part of X-MSG-IM.
X-MSG-IM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
X-MSG-IM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with X-MSG-IM. If not, see <https://www.gnu.org/licenses/>.
*/
#include "XmsgImLog.h"
#include "http/XmsgImHttpLog.h"
#include "rudp/XmsgImRudpLog.h"
#include "tcp/XmsgImTcpLog.h"
#include "udp/XmsgImUdpLog.h"
#include "ws/XmsgImWebSocketLog.h"
XmsgImLog::XmsgImLog()
{
}
shared_ptr<XmsgImLog> XmsgImLog::getLog(XscChannel* channel)
{
if (channel->proType == XscProtocolType::XSC_PROTOCOL_TCP)
return static_pointer_cast<XmsgImLog>(static_pointer_cast<XmsgImTcpLog>(static_pointer_cast<XscTcpLog>(channel->worker->server->log)));
if (channel->proType == XscProtocolType::XSC_PROTOCOL_HTTP)
return static_pointer_cast<XmsgImLog>(static_pointer_cast<XmsgImHttpLog>(static_pointer_cast<XscHttpLog>(channel->worker->server->log)));
if (channel->proType == XscProtocolType::XSC_PROTOCOL_WEBSOCKET)
return static_pointer_cast<XmsgImLog>(static_pointer_cast<XmsgImWebSocketLog>(static_pointer_cast<XscWebSocketLog>(channel->worker->server->log)));
if (channel->proType == XscProtocolType::XSC_PROTOCOL_UDP)
return static_pointer_cast<XmsgImLog>(static_pointer_cast<XmsgImUdpLog>(static_pointer_cast<XscUdpLog>(channel->worker->server->log)));
if (channel->proType == XscProtocolType::XSC_PROTOCOL_RUDP)
return static_pointer_cast<XmsgImLog>(static_pointer_cast<XmsgImRudpLog>(static_pointer_cast<XmsgImRudpLog>(channel->worker->server->log)));
LOG_FAULT("it`s a bug, unexpected xsc protocol type, channel: %02X", channel->proType)
return nullptr;
}
XmsgImLog::~XmsgImLog()
{
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/dev5-libx-msg-im-xsc.git
git@api.gitlife.ru:oschina-mirror/dev5-libx-msg-im-xsc.git
oschina-mirror
dev5-libx-msg-im-xsc
dev5-libx-msg-im-xsc
master