* Periodically call ng_ppp_frag_checkstale() */
| 1968 | * Periodically call ng_ppp_frag_checkstale() |
| 1969 | */ |
| 1970 | static void |
| 1971 | ng_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 |
nothing calls this directly
no test coverage detected