
# Conflicts: # src/controller/controller_api.cpp # src/controller/controller_api.h # src/controller/controller_storage.cpp
9 lines
325 B
C++
9 lines
325 B
C++
#include <mist/socket.h>
|
|
#include <mist/json.h>
|
|
|
|
namespace Controller {
|
|
bool authorize(JSON::Value & Request, JSON::Value & Response, Socket::Connection & conn);
|
|
int handleAPIConnection(Socket::Connection & conn);
|
|
void handleAPICommands(JSON::Value & Request, JSON::Value & Response);
|
|
void handleUDPAPI(void * np);
|
|
}
|