Mixe for Privacy and Anonymity in the Internet
Classes | Functions
CAReplayCtrlChannelMsgProc.hpp File Reference
#include "CAThread.hpp"
Include dependency graph for CAReplayCtrlChannelMsgProc.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  CAReplayCtrlChannelMsgProc

Functions

THREAD_RETURN rp_loopPropagateTimestamp (void *param)

Function Documentation

Definition at line 188 of file CAReplayCtrlChannelMsgProc.cpp.

References CAReplayCtrlChannelMsgProc::m_bRun, CAReplayCtrlChannelMsgProc::m_u32PropagationInterval, CAReplayCtrlChannelMsgProc::propagateCurrentReplayTimestamp(), sSleep(), and THREAD_RETURN_SUCCESS.

  {
    CAReplayCtrlChannelMsgProc* pReplayMsgProc=(CAReplayCtrlChannelMsgProc*)param;
    UINT32 propagationInterval=pReplayMsgProc->m_u32PropagationInterval;
    while(pReplayMsgProc->m_bRun)
      {
        if(propagationInterval==0)
          {
            pReplayMsgProc->propagateCurrentReplayTimestamp();
            propagationInterval=pReplayMsgProc->m_u32PropagationInterval;
          }
        sSleep(60);
        propagationInterval--;
      }
    THREAD_RETURN_SUCCESS;
  }

Here is the call graph for this function: