mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-24 19:50:38 +08:00
754073918a
* 优化MultiMediaSourceMuxer头文件包含 * 将MediaSinkDelegate和Demux移到MediaSink中 * MediaSource头文件重构, 独立出PacketCache.h 精简Frame和Track的头文件 * Rtmp头文件重构 * Rtsp头文件重构 * webrtc头文件重构 * 规范.h头文件包含,并将其移到.cpp中: - 尽量不包含Common\config.h - Util\File.h - Rtsp/RtspPlayer.h - Rtmp/RtmpPlayer.h * 删除多余的Stamp.h和Base64包含
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
*
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
|
*
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef SRC_SHELL_SHELLSESSION_H_
|
|
#define SRC_SHELL_SHELLSESSION_H_
|
|
|
|
#include <functional>
|
|
#include "Util/TimeTicker.h"
|
|
#include "Network/Session.h"
|
|
|
|
namespace mediakit {
|
|
|
|
class ShellSession: public toolkit::Session {
|
|
public:
|
|
ShellSession(const toolkit::Socket::Ptr &_sock);
|
|
virtual ~ShellSession();
|
|
|
|
void onRecv(const toolkit::Buffer::Ptr &) override;
|
|
void onError(const toolkit::SockException &err) override;
|
|
void onManager() override;
|
|
|
|
private:
|
|
inline bool onCommandLine(const std::string &);
|
|
inline void pleaseInputUser();
|
|
inline void pleaseInputPasswd();
|
|
inline void printShellPrefix();
|
|
|
|
std::function<bool(const std::string &)> _loginInterceptor;
|
|
std::string _strRecvBuf;
|
|
toolkit::Ticker _beatTicker;
|
|
std::string _strUserName;
|
|
};
|
|
|
|
} /* namespace mediakit */
|
|
|
|
#endif /* SRC_SHELL_SHELLSESSION_H_ */
|