Deleted Added
full compact
39c39
< * $FreeBSD: head/sys/netgraph/ng_tty.c 68876 2000-11-18 15:17:43Z dwmalone $
---
> * $FreeBSD: head/sys/netgraph/ng_tty.c 69922 2000-12-12 18:52:14Z julian $
136a137
> static ng_connect_t ngt_connect;
169c170
< NULL,
---
> ngt_connect,
171d171
< ngt_rcvdata,
397c397
< error = ng_queue_data(sc->hook, m, NULL);
---
> NG_SEND_DATA_ONLY(error, sc->hook, m);
523a524,533
> * set the hooks into queueing mode (for outgoing packets)
> */
> static int
> ngt_connect(hook_p hook)
> {
> hook->peer->flags |= HK_QUEUE;
> return (0);
> }
>
> /*
570c580
< struct mbuf **ret_m, meta_p *ret_meta)
---
> struct mbuf **ret_m, meta_p *ret_meta, struct ng_mesg **resp)