summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Lasch <mlasch@mailbox.org>2015-08-12 00:09:46 +0200
committerMarc Lasch <mlasch@mailbox.org>2015-08-12 00:09:46 +0200
commitaa80b95124752095533cff761c3287d756ca26cd (patch)
treee6a71ca06640dc92041b7c34f4e0925cf3030b97
parent9f7530aa40c4197a8c1979b37baab43ba2e6205f (diff)
downloadnetgraph-aa80b95124752095533cff761c3287d756ca26cd.tar.gz
netgraph-aa80b95124752095533cff761c3287d756ca26cd.zip
not working now
-rw-r--r--.gitignore1
-rw-r--r--Makefile2
-rw-r--r--src/apiHandler.cpp15
-rw-r--r--src/apiHandler.h22
-rw-r--r--src/server.cpp9
5 files changed, 44 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 6b97cea..f693558 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
.project
.cproject
+.settings
bin
*.o
*.swp
diff --git a/Makefile b/Makefile
index 9c682b5..3f4d92f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-OBJ=src/server.o mongoose/mongoose.o
+OBJ=src/server.o src/apiHandler.o mongoose/mongoose.o
OUT=bin/server
CFLAGS += -Wall -DNO_CGI -DNO_POPEN -DUSE_IPV6
diff --git a/src/apiHandler.cpp b/src/apiHandler.cpp
new file mode 100644
index 0000000..231fd6c
--- /dev/null
+++ b/src/apiHandler.cpp
@@ -0,0 +1,15 @@
+#include "apiHandler.h"
+
+using namespace std;
+
+apiHandler::apiHandler(struct mg_connection *conn) {
+ MyConnection = conn;
+}
+
+apiHandler::~apiHandler(void) { }
+
+int apiHandler::processRequest(void) {
+
+ return MG_FALSE;
+
+}
diff --git a/src/apiHandler.h b/src/apiHandler.h
new file mode 100644
index 0000000..6909fdd
--- /dev/null
+++ b/src/apiHandler.h
@@ -0,0 +1,22 @@
+#ifndef _APIHANDLER_
+#define APIHANDLER
+
+#include <iostream>
+#include <string>
+#include <vector>
+#include <regex>
+#include "mongoose.h"
+
+using namespace std;
+
+class apiHandler {
+private:
+ struct mg_connection *MyConnection;
+
+public:
+ apiHandler(struct mg_connection*);
+ ~apiHandler(void);
+ int processRequest();
+};
+
+#endif
diff --git a/src/server.cpp b/src/server.cpp
index 222e8ea..3efb51d 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -1,16 +1,16 @@
#include <iostream>
#include <string>
#include "mongoose.h"
+#include "apiHandler.h"
using namespace std;
int event_handler(struct mg_connection *conn, enum mg_event ev) {
+ apiHandler MyApiHandler(conn);
+
switch (ev) {
case MG_AUTH: return MG_TRUE;
- case MG_REQUEST:
- if (conn->uri) {
- cout<<conn->request_method<<" "<<conn->uri<<endl;
- } else return MG_FALSE;
+ case MG_REQUEST: return MyApiHandler.processRequest();
default: return MG_FALSE;
}
}
@@ -21,6 +21,7 @@ int main(int argc, char **argv) {
struct mg_server *server = mg_create_server(NULL, event_handler);
mg_set_option(server, "document_root", "./www/");
+ mg_set_option(server, "enable_directory_listing", "no");
mg_set_option(server, "listening_port", server_port.c_str());
cout<<"Staring server on port "<<server_port<<"."<<endl;