Subversion Repositories tpanel

Rev

Rev 110 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 110 Rev 118
Line 2673... Line 2673...
2673
        return;
2673
        return;
2674
 
2674
 
2675
    MSG_DEBUG("Setting network state to " << state);
2675
    MSG_DEBUG("Setting network state to " << state);
2676
    map<ulong, FUNC_NETWORK_t>::iterator iter;
2676
    map<ulong, FUNC_NETWORK_t>::iterator iter;
2677
 
2677
 
2678
    for (iter = mFuncsNetwork.begin(); iter != mFuncsNetwork.end(); iter++)
2678
    for (iter = mFuncsNetwork.begin(); iter != mFuncsNetwork.end(); ++iter)
2679
        iter->second.func(state);
2679
        iter->second.func(state);
2680
}
2680
}
2681
 
2681
 
2682
void TAmxNet::sendAllFuncTimer(const ANET_BLINK& blink)
2682
void TAmxNet::sendAllFuncTimer(const ANET_BLINK& blink)
2683
{
2683
{
Line 2686... Line 2686...
2686
    if (mFuncsTimer.empty())
2686
    if (mFuncsTimer.empty())
2687
        return;
2687
        return;
2688
 
2688
 
2689
    map<ulong, FUNC_TIMER_t>::iterator iter;
2689
    map<ulong, FUNC_TIMER_t>::iterator iter;
2690
 
2690
 
2691
    for (iter = mFuncsTimer.begin(); iter != mFuncsTimer.end(); iter++)
2691
    for (iter = mFuncsTimer.begin(); iter != mFuncsTimer.end(); ++iter)
2692
        iter->second.func(blink);
2692
        iter->second.func(blink);
2693
}
2693
}
2694
 
2694
 
2695
void TAmxNet::setWaitTime(int secs)
2695
void TAmxNet::setWaitTime(int secs)
2696
{
2696
{