MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ng_ppp_start_frag_timer

Function ng_ppp_start_frag_timer

freebsd/netgraph/ng_ppp.c:2626–2634  ·  view source on GitHub ↗

* Start fragment queue timer */

Source from the content-addressed store, hash-verified

2624 * Start fragment queue timer
2625 */
2626static void
2627ng_ppp_start_frag_timer(node_p node)
2628{
2629 const priv_p priv = NG_NODE_PRIVATE(node);
2630
2631 if (!(callout_pending(&priv->fragTimer)))
2632 ng_callout(&priv->fragTimer, node, NULL, MP_FRAGTIMER_INTERVAL,
2633 ng_ppp_frag_timeout, NULL, 0);
2634}
2635
2636/*
2637 * Stop fragment queue timer

Callers 2

ng_ppp_frag_timeoutFunction · 0.85
ng_ppp_updateFunction · 0.85

Calls 1

ng_calloutFunction · 0.70

Tested by

no test coverage detected