mirror of https://github.com/tp4a/teleport
29 lines
392 B
C
29 lines
392 B
C
![]() |
#ifndef __TS_ENV_H__
|
||
|
#define __TS_ENV_H__
|
||
|
|
||
|
#include <ex.h>
|
||
|
|
||
|
class TsEnv
|
||
|
{
|
||
|
public:
|
||
|
TsEnv();
|
||
|
~TsEnv();
|
||
|
|
||
|
bool init(void);
|
||
|
|
||
|
public:
|
||
|
ex_wstr m_exec_file;
|
||
|
ex_wstr m_exec_path;
|
||
|
|
||
|
ex_wstr m_ssh_client_conf_file;
|
||
|
ex_wstr m_scp_client_conf_file;
|
||
|
ex_wstr m_telnet_client_conf_file;
|
||
|
ex_wstr m_log_path;
|
||
|
ex_wstr m_site_path;
|
||
|
ex_wstr m_tools_path;
|
||
|
};
|
||
|
|
||
|
extern TsEnv g_env;
|
||
|
|
||
|
#endif // __TS_ENV_H__
|