mirror of https://github.com/tp4a/teleport
temp.
parent
7e7c63253a
commit
5155d4ff5d
|
@ -64,12 +64,15 @@
|
|||
# include <stdlib.h> // free()
|
||||
# include <stdarg.h> // va_start()
|
||||
# include <unistd.h> // readlink()
|
||||
# include <fcntl.h> // O_RDONLY, etc.
|
||||
# include <errno.h>
|
||||
# include <wchar.h>
|
||||
# include <sys/stat.h>
|
||||
# include <sys/types.h>
|
||||
# include <sys/socket.h>
|
||||
# include <netinet/in.h>
|
||||
#endif
|
||||
|
||||
#ifdef EX_OS_MACOS
|
||||
# include <mach-o/dyld.h> // for _NSGetExecutablePath
|
||||
# ifndef _T
|
||||
|
|
|
@ -200,7 +200,7 @@ FILE* ex_fopen(const ex_astr& filename, const char* mode) {
|
|||
else
|
||||
return NULL;
|
||||
#else
|
||||
f = fopen(filename.c_str(), mode.c_str());
|
||||
f = fopen(filename.c_str(), mode);
|
||||
return f;
|
||||
#endif
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ bool SshProxy::init(void)
|
|||
}
|
||||
|
||||
void SshProxy::timer(void) {
|
||||
EXLOGV("[ssh] on-timer.\n");
|
||||
// EXLOGV("[ssh] on-timer.\n");
|
||||
}
|
||||
|
||||
void SshProxy::_thread_loop(void)
|
||||
|
|
Loading…
Reference in New Issue