removed additional buggy signatures

This commit is contained in:
Erik Frojdh 2020-07-23 08:19:08 +02:00
parent 8b9a69e1f1
commit 07869134d6

View File

@ -932,7 +932,7 @@ void Module::setFileIndex(int64_t file_index) {
}
void Module::incrementFileIndex() {
sendToReceiver(F_INCREMENT_FILE_INDEX, nullptr, nullptr);
sendToReceiver(F_INCREMENT_FILE_INDEX);
}
bool Module::getFileWrite() {
@ -2273,7 +2273,7 @@ void Module::copyDetectorServer(const std::string &fname,
}
void Module::rebootController() {
sendToDetector(F_REBOOT_CONTROLLER, nullptr, nullptr);
sendToDetector(F_REBOOT_CONTROLLER);
LOG(logINFO) << "Controller rebooted successfully!";
}
@ -2817,7 +2817,7 @@ void Module::checkReceiverVersionCompatibility() {
}
void Module::restreamStopFromReceiver() {
sendToReceiver(F_RESTREAM_STOP_FROM_RECEIVER, nullptr, nullptr);
sendToReceiver(F_RESTREAM_STOP_FROM_RECEIVER);
}
int Module::sendModule(sls_detector_module *myMod, sls::ClientSocket &client) {