diff --git a/msearch.c b/msearch.c index dee74c6..6152cda 100644 --- a/msearch.c +++ b/msearch.c @@ -49,7 +49,7 @@ int cSatipMsearch::GetFd(void) return Fd(); } -void cSatipMsearch::Process(int fdP) +void cSatipMsearch::Process(void) { //debug("cSatipMsearch::%s()", __FUNCTION__); if (bufferM) { diff --git a/msearch.h b/msearch.h index 33e549c..3b78e1a 100644 --- a/msearch.h +++ b/msearch.h @@ -31,7 +31,7 @@ public: // for internal poller interface public: virtual int GetFd(void); - virtual void Process(int fdP); + virtual void Process(void); }; #endif /* __SATIP_MSEARCH_H_ */ diff --git a/poller.c b/poller.c index a201611..10cd01a 100644 --- a/poller.c +++ b/poller.c @@ -78,7 +78,7 @@ void cSatipPoller::Action(void) for (int i = 0; i < nfds; ++i) { cSatipPollerIf* poll = reinterpret_cast(events[i].data.ptr); if (poll) - poll->Process(events[i].events); + poll->Process(); } } debug("cSatipPoller::%s(): exiting", __FUNCTION__); diff --git a/pollerif.h b/pollerif.h index fa8b091..02be97a 100644 --- a/pollerif.h +++ b/pollerif.h @@ -13,7 +13,7 @@ public: cSatipPollerIf() {} virtual ~cSatipPollerIf() {} virtual int GetFd(void) = 0; - virtual void Process(int fdP) = 0; + virtual void Process(void) = 0; private: cSatipPollerIf(const cSatipPollerIf&); diff --git a/rtcp.c b/rtcp.c index a73f38c..03fb1b7 100644 --- a/rtcp.c +++ b/rtcp.c @@ -77,9 +77,9 @@ int cSatipRtcp::GetApplicationOffset(int *lengthP) return -1; } -void cSatipRtcp::Process(int fdP) +void cSatipRtcp::Process(void) { - //debug("cSatipRtcp::%s(%d) [device %d]", __FUNCTION__, fdP, tunerM.GetId()); + //debug("cSatipRtcp::%s() [device %d]", __FUNCTION__, tunerM.GetId()); if (bufferM) { int length = Read(bufferM, bufferLenM); if (length > 0) { diff --git a/rtcp.h b/rtcp.h index 6257764..eb1296b 100644 --- a/rtcp.h +++ b/rtcp.h @@ -26,7 +26,7 @@ public: // for internal poller interface public: virtual int GetFd(void); - virtual void Process(int fdP); + virtual void Process(void); }; #endif /* __SATIP_RTCP_H_ */ diff --git a/rtp.c b/rtp.c index efd4f99..0a21e9f 100644 --- a/rtp.c +++ b/rtp.c @@ -107,9 +107,9 @@ int cSatipRtp::GetHeaderLenght(unsigned int lengthP) return headerlen; } -void cSatipRtp::Process(int fdP) +void cSatipRtp::Process(void) { - //debug("cSatipRtp::%s(%d) [device %d]", __FUNCTION__, fdP, tunerM.GetId()); + //debug("cSatipRtp::%s() [device %d]", __FUNCTION__, tunerM.GetId()); if (bufferM) { int length = Read(bufferM, bufferLenM); if (length > 0) { diff --git a/rtp.h b/rtp.h index d15308a..101c36b 100644 --- a/rtp.h +++ b/rtp.h @@ -33,7 +33,7 @@ public: // for internal poller interface public: virtual int GetFd(void); - virtual void Process(int fdP); + virtual void Process(void); }; #endif /* __SATIP_RTP_H_ */