Lines Matching refs:node_p

292 static int	ng_ppp_proto_recv(node_p node, item_p item, uint16_t proto,
294 static int ng_ppp_hcomp_xmit(node_p node, item_p item, uint16_t proto);
295 static int ng_ppp_hcomp_recv(node_p node, item_p item, uint16_t proto,
297 static int ng_ppp_comp_xmit(node_p node, item_p item, uint16_t proto);
298 static int ng_ppp_comp_recv(node_p node, item_p item, uint16_t proto,
300 static int ng_ppp_crypt_xmit(node_p node, item_p item, uint16_t proto);
301 static int ng_ppp_crypt_recv(node_p node, item_p item, uint16_t proto,
303 static int ng_ppp_mp_xmit(node_p node, item_p item, uint16_t proto);
304 static int ng_ppp_mp_recv(node_p node, item_p item, uint16_t proto,
306 static int ng_ppp_link_xmit(node_p node, item_p item, uint16_t proto,
309 static int ng_ppp_bypass(node_p node, item_p item, uint16_t proto,
312 static void ng_ppp_bump_mseq(node_p node, int32_t new_mseq);
313 static int ng_ppp_frag_drop(node_p node);
314 static int ng_ppp_check_packet(node_p node);
315 static void ng_ppp_get_packet(node_p node, struct mbuf **mp);
316 static int ng_ppp_frag_process(node_p node, item_p oitem);
317 static int ng_ppp_frag_trim(node_p node);
318 static void ng_ppp_frag_timeout(node_p node, hook_p hook, void *arg1,
320 static void ng_ppp_frag_checkstale(node_p node);
321 static void ng_ppp_frag_reset(node_p node);
322 static void ng_ppp_mp_strategy(node_p node, int len, int *distrib);
327 static int ng_ppp_config_valid(node_p node,
329 static void ng_ppp_update(node_p node, int newConf);
330 static void ng_ppp_start_frag_timer(node_p node);
331 static void ng_ppp_stop_frag_timer(node_p node);
488 ng_ppp_constructor(node_p node) in ng_ppp_constructor()
518 ng_ppp_newhook(node_p node, hook_p hook, const char *name) in ng_ppp_newhook()
581 ng_ppp_rcvmsg(node_p node, item_p item, hook_p lasthook) in ng_ppp_rcvmsg()
733 ng_ppp_shutdown(node_p node) in ng_ppp_shutdown()
757 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_disconnect()
786 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_inet()
802 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_inet_fast()
815 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_ipv6()
831 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_atalk()
847 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_ipx()
889 ng_ppp_bypass(node_p node, item_p item, uint16_t proto, uint16_t linkNum) in ng_ppp_bypass()
918 ng_ppp_proto_recv(node_p node, item_p item, uint16_t proto, uint16_t linkNum) in ng_ppp_proto_recv()
970 ng_ppp_hcomp_xmit(node_p node, item_p item, uint16_t proto) in ng_ppp_hcomp_xmit()
993 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_vjc_comp()
1009 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_vjc_uncomp()
1025 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_vjc_vjip()
1036 ng_ppp_hcomp_recv(node_p node, item_p item, uint16_t proto, uint16_t linkNum) in ng_ppp_hcomp_recv()
1070 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_vjc_ip()
1085 ng_ppp_comp_xmit(node_p node, item_p item, uint16_t proto) in ng_ppp_comp_xmit()
1118 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_compress()
1150 ng_ppp_comp_recv(node_p node, item_p item, uint16_t proto, uint16_t linkNum) in ng_ppp_comp_recv()
1189 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_decompress()
1217 ng_ppp_crypt_xmit(node_p node, item_p item, uint16_t proto) in ng_ppp_crypt_xmit()
1249 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_encrypt()
1260 ng_ppp_crypt_recv(node_p node, item_p item, uint16_t proto, uint16_t linkNum) in ng_ppp_crypt_recv()
1289 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata_decrypt()
1317 ng_ppp_link_xmit(node_p node, item_p item, uint16_t proto, uint16_t linkNum, int plen) in ng_ppp_link_xmit()
1405 const node_p node = NG_HOOK_NODE(hook); in ng_ppp_rcvdata()
1520 ng_ppp_mp_recv(node_p node, item_p item, uint16_t proto, uint16_t linkNum) in ng_ppp_mp_recv()
1647 ng_ppp_bump_mseq(node_p node, int32_t new_mseq) in ng_ppp_bump_mseq()
1671 ng_ppp_check_packet(node_p node) in ng_ppp_check_packet()
1704 ng_ppp_get_packet(node_p node, struct mbuf **mp) in ng_ppp_get_packet()
1742 ng_ppp_frag_trim(node_p node) in ng_ppp_frag_trim()
1791 ng_ppp_frag_drop(node_p node) in ng_ppp_frag_drop()
1822 ng_ppp_frag_process(node_p node, item_p oitem) in ng_ppp_frag_process()
1885 ng_ppp_frag_checkstale(node_p node) in ng_ppp_frag_checkstale()
1967 ng_ppp_frag_timeout(node_p node, hook_p hook, void *arg1, int arg2) in ng_ppp_frag_timeout()
1985 ng_ppp_mp_xmit(node_p node, item_p item, uint16_t proto) in ng_ppp_mp_xmit()
2258 ng_ppp_mp_strategy(node_p node, int len, int *distrib) in ng_ppp_mp_strategy()
2469 ng_ppp_update(node_p node, int newConf) in ng_ppp_update()
2564 ng_ppp_config_valid(node_p node, const struct ng_ppp_node_conf *newConf) in ng_ppp_config_valid()
2606 ng_ppp_frag_reset(node_p node) in ng_ppp_frag_reset()
2623 ng_ppp_start_frag_timer(node_p node) in ng_ppp_start_frag_timer()
2636 ng_ppp_stop_frag_timer(node_p node) in ng_ppp_stop_frag_timer()