We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30a6804 + 9e82163 commit 53bce5bCopy full SHA for 53bce5b
include/httpserver.h
@@ -31,6 +31,11 @@ typedef struct HttpRequest {
31
int responsecode; //response code
32
} HR;
33
34
+struct CmdResult {
35
+ int exit_code;
36
+ string stdout_str;
37
+};
38
+
39
class HttpServer {
40
public:
41
HttpServer();
source/httpserver.cpp
@@ -34,11 +34,6 @@ struct Timer_thread_info { /* Used as argument to thread */
};
Timer_thread_info timer_thread_info;
-struct CmdResult {
- int exit_code;
- string stdout_str;
-};
-
42
void *win_timer_callback(void *para)
43
{
44
Timer_thread_info *tinfo = (Timer_thread_info *) para;
0 commit comments