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

Function ng_ppp_frag_timeout

freebsd/netgraph/ng_ppp.c:1970–1982  ·  view source on GitHub ↗

* Periodically call ng_ppp_frag_checkstale() */

Source from the content-addressed store, hash-verified

1968 * Periodically call ng_ppp_frag_checkstale()
1969 */
1970static void
1971ng_ppp_frag_timeout(node_p node, hook_p hook, void *arg1, int arg2)
1972{
1973 /* XXX: is this needed? */
1974 if (NG_NODE_NOT_VALID(node))
1975 return;
1976
1977 /* Scan the fragment queue */
1978 ng_ppp_frag_checkstale(node);
1979
1980 /* Start timer again */
1981 ng_ppp_start_frag_timer(node);
1982}
1983
1984/*
1985 * Deliver a frame out on the bundle, i.e., figure out how to fragment

Callers

nothing calls this directly

Calls 2

ng_ppp_frag_checkstaleFunction · 0.85
ng_ppp_start_frag_timerFunction · 0.85

Tested by

no test coverage detected