Home
last modified time | relevance | path

Searched refs:lqm (Results 1 – 8 of 8) sorted by relevance

/external/libppp/src/
Dlqr.c82 echo.sequence = htonl(hdlc->lqm.echo.seq_sent); in SendEchoReq()
83 fsm_Output(&lcp->fsm, CODE_ECHOREQ, hdlc->lqm.echo.seq_sent++, in SendEchoReq()
113 if ((hdlc->lqm.echo.seq_recv > (u_int32_t)0 - 5 && lqr.sequence < 5) || in lqr_RecvEcho()
114 (hdlc->lqm.echo.seq_recv <= (u_int32_t)0 - 5 && in lqr_RecvEcho()
115 lqr.sequence > hdlc->lqm.echo.seq_recv)) in lqr_RecvEcho()
116 hdlc->lqm.echo.seq_recv = lqr.sequence; in lqr_RecvEcho()
167 timer_Stop(&p->hdlc.lqm.timer); in SendLqrReport()
169 if (p->hdlc.lqm.method & LQM_LQR) { in SendLqrReport()
170 if (p->hdlc.lqm.lqr.resent > 5) { in SendLqrReport()
176 p->hdlc.lqm.method = 0; in SendLqrReport()
[all …]
Dsync.c75 p->hdlc.lqm.ifInOctets += len + 1; /* plus 1 flag octet! */ in sync_LayerPull()
76 p->hdlc.lqm.lqr.InGoodOctets += len + 1; /* plus 1 flag octet! */ in sync_LayerPull()
77 p->hdlc.lqm.ifInUniPackets++; in sync_LayerPull()
Dhdlc.c102 hdlc->lqm.owner = lcp; in hdlc_Init()
322 p->hdlc.lqm.ifInOctets += len + 1; /* plus 1 flag octet! */ in hdlc_LayerPull()
325 p->hdlc.lqm.ifInErrors++; in hdlc_LayerPull()
332 p->hdlc.lqm.lqr.InGoodOctets += len + 1; /* plus 1 flag octet! */ in hdlc_LayerPull()
333 p->hdlc.lqm.ifInUniPackets++; in hdlc_LayerPull()
410 hdlc->lqm.owner->fsm.link->name, in hdlc_ReportTime()
Dacf.c89 p->hdlc.lqm.ifInErrors++; in acf_LayerPull()
96 p->hdlc.lqm.ifInErrors++; in acf_LayerPull()
Dhdlc.h100 } lqm; member
Dphysical.c637 p->hdlc.lqm.owner = &p->link.lcp; in iov2physical()
639 p->hdlc.lqm.timer.state = TIMER_STOPPED; in iov2physical()
661 if (p->hdlc.lqm.method && p->hdlc.lqm.timer.load) in iov2physical()
Dlink.c392 p->hdlc.lqm.ifInDiscards++; in Despatch()
Dcommand.c2893 cx->physical->hdlc.lqm.method &= ~LQM_ECHO; in NegotiateSet()
2894 if (cx->physical->hdlc.lqm.method & LQM_ECHO && in NegotiateSet()
2896 cx->physical->hdlc.lqm.timer.load) { in NegotiateSet()
2897 cx->physical->hdlc.lqm.timer.load = 0; in NegotiateSet()
2902 cx->physical->hdlc.lqm.method |= LQM_ECHO; in NegotiateSet()
2903 cx->physical->hdlc.lqm.timer.load = in NegotiateSet()
2906 (*cx->physical->hdlc.lqm.timer.func)(&cx->physical->link.lcp); in NegotiateSet()