添加shell相关代码

This commit is contained in:
xiongziliang 2019-12-24 16:09:09 +08:00
parent 4e0919d13b
commit a3c482c1ef
3 changed files with 22 additions and 0 deletions

View File

@ -132,6 +132,13 @@ API_EXPORT uint16_t API_CALL mk_rtmp_server_start(uint16_t port, int ssl);
*/ */
API_EXPORT uint16_t API_CALL mk_rtp_server_start(uint16_t port); API_EXPORT uint16_t API_CALL mk_rtp_server_start(uint16_t port);
/**
* shell服务器
* @param port shell监听端口
* @return 0:,0:
*/
API_EXPORT uint16_t API_CALL mk_shell_server_start(uint16_t port);
/** /**
* *
* @param level ,0~4 * @param level ,0~4

View File

@ -35,6 +35,7 @@
#include "Rtsp/RtspSession.h" #include "Rtsp/RtspSession.h"
#include "Rtmp/RtmpSession.h" #include "Rtmp/RtmpSession.h"
#include "Http/HttpSession.h" #include "Http/HttpSession.h"
#include "Shell/ShellSession.h"
using namespace std; using namespace std;
using namespace toolkit; using namespace toolkit;
using namespace mediakit; using namespace mediakit;
@ -42,6 +43,7 @@ using namespace mediakit;
static TcpServer::Ptr rtsp_server[2]; static TcpServer::Ptr rtsp_server[2];
static TcpServer::Ptr rtmp_server[2]; static TcpServer::Ptr rtmp_server[2];
static TcpServer::Ptr http_server[2]; static TcpServer::Ptr http_server[2];
static TcpServer::Ptr shell_server;
#ifdef ENABLE_RTPPROXY #ifdef ENABLE_RTPPROXY
#include "Rtp/UdpRecver.h" #include "Rtp/UdpRecver.h"
@ -190,6 +192,18 @@ API_EXPORT uint16_t API_CALL mk_rtp_server_start(uint16_t port){
#endif #endif
} }
API_EXPORT uint16_t API_CALL mk_shell_server_start(uint16_t port){
try {
shell_server = std::make_shared<TcpServer>();
shell_server->start<ShellSession>(port);
return shell_server->getPort();
} catch (std::exception &ex) {
shell_server.reset();
WarnL << ex.what();
return 0;
}
}
API_EXPORT void API_CALL mk_log_printf(int level, const char *file, const char *function, int line, const char *fmt, ...) { API_EXPORT void API_CALL mk_log_printf(int level, const char *file, const char *function, int line, const char *fmt, ...) {
assert(file && function && fmt); assert(file && function && fmt);
LogContextCapturer info(Logger::Instance(), (LogLevel) level, file, function, line); LogContextCapturer info(Logger::Instance(), (LogLevel) level, file, function, line);

View File

@ -396,6 +396,7 @@ int main(int argc, char *argv[]) {
mk_http_server_start(80, false); mk_http_server_start(80, false);
mk_rtsp_server_start(554, false); mk_rtsp_server_start(554, false);
mk_rtmp_server_start(1935, false); mk_rtmp_server_start(1935, false);
mk_shell_server_start(9000);
mk_rtp_server_start(10000); mk_rtp_server_start(10000);
mk_events events = { mk_events events = {