mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-24 19:50:38 +08:00
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
|
*
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
|
*
|
|
* Use of this source code is governed by MIT-like 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);
|
|
|
|
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_ */
|