Deleted Added
full compact
39c39
< * $FreeBSD: head/sys/netgraph/ng_ppp.c 68876 2000-11-18 15:17:43Z dwmalone $
---
> * $FreeBSD: head/sys/netgraph/ng_ppp.c 69922 2000-12-12 18:52:14Z julian $
355d354
< ng_ppp_rcvdata,
562,563c561
< if ((error = ng_path2node(node,
< raddr, &origNode, NULL, NULL)) != 0)
---
> if ((error = ng_path2node(node, raddr, &origNode, NULL)) != 0)
567c565,569
< return ng_send_msg(origNode, msg, path, rptr);
---
> return ng_send_msg(origNode, msg, path, NULL, NULL, rptr);
> /* XXX Archie, looks like you are using the wrong value for the ID here..
> you can't use a node address as a node-ID any more..
> But it may be that you can use the new 'hook' arg for ng_send_msg()
> to achieve a more efficient resuld than an ID anyhow. */
588c590
< struct mbuf **ret_m, meta_p *ret_meta)
---
> struct mbuf **ret_m, meta_p *ret_meta, struct ng_mesg **resp)
784c786
< NG_SEND_DATA_RET(error, outHook, m, meta);
---
> NG_SEND_DATA_RET(error, outHook, m, meta, resp);
786c788
< return ng_ppp_rcvdata(outHook, m, meta, NULL, NULL);
---
> return ng_ppp_rcvdata(outHook, m, meta, NULL, NULL, resp);