mistserver/src/controller/controller_api.h
2014-08-02 16:39:43 +02:00

8 lines
277 B
C++

#include <mist/socket.h>
#include <mist/json.h>
namespace Controller {
void checkConfig(JSON::Value & in, JSON::Value & out);
bool authorize(JSON::Value & Request, JSON::Value & Response, Socket::Connection & conn);
int handleAPIConnection(Socket::Connection & conn);
}