restream stop from receiver

This commit is contained in:
Dhanya Maliakal
2017-11-30 18:39:08 +01:00
parent b75985088d
commit 70bf6eb4cb
10 changed files with 105 additions and 0 deletions

View File

@ -569,6 +569,11 @@ void UDPBaseImplementation::setStreamingPort(const uint32_t i) {
}
int UDPBaseImplementation::restreamStop() {
FILE_LOG(logWARNING) << __AT__ << " doing nothing...";
FILE_LOG(logERROR) << __AT__ << " must be overridden by child classes";
}
/***callback functions***/
void UDPBaseImplementation::registerCallBackStartAcquisition(int (*func)(char*, char*, uint64_t, uint32_t, void*),void *arg){
startAcquisitionCallBack=func;