Increase polling frequency.
This commit is contained in:
parent
5a9a6ccc58
commit
3cac3af31e
3 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ m_address(),
|
|||
m_port(0U),
|
||||
m_debug(debug),
|
||||
m_buffer(1000U, "YSF Network"),
|
||||
m_pollTimer(1000U, 60U)
|
||||
m_pollTimer(1000U, 5U)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ void CYSFReflector::run()
|
|||
CStopWatch stopWatch;
|
||||
stopWatch.start();
|
||||
|
||||
CTimer pollTimer(1000U, 60U);
|
||||
CTimer pollTimer(1000U, 5U);
|
||||
pollTimer.start();
|
||||
|
||||
::fprintf(stdout, "Starting YSFReflector-%s\n", VERSION);
|
||||
|
|
|
@ -42,7 +42,7 @@ public:
|
|||
m_callsign(),
|
||||
m_address(),
|
||||
m_port(0U),
|
||||
m_timer(1000U, 300U)
|
||||
m_timer(1000U, 60U)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue