8 lines
277 B
C++
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);
|
|
}
|