mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
7f2d6bde9a
* implement 404 for webserver - this is a quick hack, should be refactored later * add http error pages ... design is more a placebo ;-) * tune errorpages fix some cgi related stuff, now only python is possible executing and reading python file is possilbe, but it cannot receive any data from webui * fix typo * fix another typo
11 lines
187 B
C++
11 lines
187 B
C++
#pragma once
|
|
|
|
#include <QByteArray>
|
|
#include <QString>
|
|
|
|
namespace Process {
|
|
|
|
void restartHyperion(bool asNewProcess=false);
|
|
QByteArray command_exec(QString cmd, QByteArray data="");
|
|
|
|
}; |