]> git.vomp.tv Git - jsonserver.git/blob - handler.h
Stop a recording timer from a recording point of view
[jsonserver.git] / handler.h
1 #ifndef JSONSERVERHANDLER_H
2 #define JSONSERVERHANDLER_H
3
4 #include <jsoncpp/json/json.h>
5 #include "mongoose.h"
6
7 int jsonserver_request_handler(struct mg_connection* conn);
8
9 bool jsonserver_reclist(Json::Value& js);
10 bool jsonserver_recinfo(Json::Value& js, const char* postData);
11 bool jsonserver_recdel(Json::Value& js, const char* postData);
12 bool jsonserver_recmove(Json::Value& js, const char* postData);
13 bool jsonserver_recstop(Json::Value& js, const char* postData);
14 bool jsonserver_channellist(Json::Value& js);
15 bool jsonserver_channelschedule(Json::Value& js, const char* postData);
16 bool jsonserver_timerlist(Json::Value& js);
17 bool jsonserver_timerdel(Json::Value& js, const char* postData);
18 bool jsonserver_timerset(Json::Value& js, const char* postData);
19
20 #endif
21