15 lines
385 B
C++
15 lines
385 B
C++
/// \file controller_updater.h
|
|
/// Contains all code for the controller updater.
|
|
|
|
#include <mist/json.h>
|
|
#include <mist/socket.h>
|
|
#include <string>
|
|
|
|
namespace Controller{
|
|
void updateThread(void *np);
|
|
JSON::Value checkUpdateInfo();
|
|
void checkUpdates();
|
|
void insertUpdateInfo(JSON::Value &ret);
|
|
void updateComponent(const std::string &component, const std::string &md5sum);
|
|
}
|
|
|