mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Changed logging to to use SATIP instead of SAT>IP.
This commit is contained in:
parent
796a047401
commit
23dce9e205
6
device.c
6
device.c
@ -26,9 +26,9 @@ cSatipDevice::cSatipDevice(unsigned int indexP)
|
||||
{
|
||||
unsigned int bufsize = (unsigned int)SATIP_BUFFER_SIZE;
|
||||
bufsize -= (bufsize % TS_SIZE);
|
||||
info("Creating SAT>IP CardIndex=%d [device %u]", CardIndex(), deviceIndexM);
|
||||
info("Creating SATIP device CardIndex=%d [device %u]", CardIndex(), deviceIndexM);
|
||||
tsBufferM = new cRingBufferLinear(bufsize + 1, TS_SIZE, false,
|
||||
*cString::sprintf("SAT>IP TS %d", deviceIndexM));
|
||||
*cString::sprintf("SATIP %d TS", deviceIndexM));
|
||||
if (tsBufferM) {
|
||||
tsBufferM->SetTimeouts(10, 10);
|
||||
tsBufferM->SetIoThrottle();
|
||||
@ -317,7 +317,7 @@ bool cSatipDevice::SetChannelDevice(const cChannel *channelP, bool liveViewP)
|
||||
cDvbTransponderParameters dtp(channelP->Parameters());
|
||||
cString params = GetTransponderUrlParameters(channelP);
|
||||
if (isempty(params)) {
|
||||
error("Unrecognized SAT>IP channel parameters: %s", channelP->Parameters());
|
||||
error("Unrecognized SATIP channel parameters: %s", channelP->Parameters());
|
||||
return false;
|
||||
}
|
||||
cString address;
|
||||
|
@ -118,7 +118,7 @@ int cSatipDiscover::DebugCallback(CURL *handleP, curl_infotype typeP, char *data
|
||||
}
|
||||
|
||||
cSatipDiscover::cSatipDiscover()
|
||||
: cThread("SAT>IP discover"),
|
||||
: cThread("SATIP discover"),
|
||||
mutexM(),
|
||||
msearchM(*this),
|
||||
probeUrlListM(),
|
||||
|
2
poller.c
2
poller.c
@ -39,7 +39,7 @@ void cSatipPoller::Destroy(void)
|
||||
}
|
||||
|
||||
cSatipPoller::cSatipPoller()
|
||||
: cThread("SAT>IP poller"),
|
||||
: cThread("SATIP poller"),
|
||||
mutexM(),
|
||||
fdM(epoll_create(eMaxFileDescriptors))
|
||||
{
|
||||
|
@ -232,8 +232,8 @@ bool cSatipSectionFilter::Send(void)
|
||||
|
||||
|
||||
cSatipSectionFilterHandler::cSatipSectionFilterHandler(int deviceIndexP, unsigned int bufferLenP)
|
||||
: cThread(cString::sprintf("SAT>IP %d section handler", deviceIndexP)),
|
||||
ringBufferM(new cRingBufferLinear(bufferLenP, TS_SIZE, false, *cString::sprintf("SAT>IP SECTION HANDLER %d", deviceIndexP))),
|
||||
: cThread(cString::sprintf("SATIP %d section handler", deviceIndexP)),
|
||||
ringBufferM(new cRingBufferLinear(bufferLenP, TS_SIZE, false, *cString::sprintf("SATIP %d section handler", deviceIndexP))),
|
||||
mutexM(),
|
||||
deviceIndexM(deviceIndexP)
|
||||
{
|
||||
|
2
tuner.c
2
tuner.c
@ -13,7 +13,7 @@
|
||||
#include "tuner.h"
|
||||
|
||||
cSatipTuner::cSatipTuner(cSatipDeviceIf &deviceP, unsigned int packetLenP)
|
||||
: cThread(cString::sprintf("SAT>IP %d tuner", deviceP.GetId())),
|
||||
: cThread(cString::sprintf("SATIP %d tuner", deviceP.GetId())),
|
||||
sleepM(),
|
||||
deviceM(&deviceP),
|
||||
deviceIdM(deviceP.GetId()),
|
||||
|
Loading…
Reference in New Issue
Block a user