diff options
author | Brian Somers <brian@FreeBSD.org> | 1998-04-05 22:48:25 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 1998-04-05 22:48:25 +0000 |
commit | cd7bd93a816437fd4c82a178133c420f69bb3b20 (patch) | |
tree | 3c116b13d956b9cee2d6058eb33b743556734677 /usr.sbin/ppp/hdlc.h | |
parent | a3e274968fffa47f626713e28929ce940762dbfb (diff) | |
download | src-test2-cd7bd93a816437fd4c82a178133c420f69bb3b20.tar.gz src-test2-cd7bd93a816437fd4c82a178133c420f69bb3b20.zip |
Notes
Diffstat (limited to 'usr.sbin/ppp/hdlc.h')
-rw-r--r-- | usr.sbin/ppp/hdlc.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/ppp/hdlc.h b/usr.sbin/ppp/hdlc.h index 82e23514aa82..52bd528e9540 100644 --- a/usr.sbin/ppp/hdlc.h +++ b/usr.sbin/ppp/hdlc.h @@ -15,7 +15,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: hdlc.h,v 1.14.2.7 1998/03/13 00:44:04 brian Exp $ + * $Id: hdlc.h,v 1.14.2.8 1998/04/03 19:21:23 brian Exp $ * * TODO: */ @@ -94,7 +94,6 @@ struct hdlc { u_int32_t seq_recv; /* last echo received */ } echo; } lqm; - }; @@ -103,11 +102,10 @@ extern void hdlc_StartTimer(struct hdlc *); extern void hdlc_StopTimer(struct hdlc *); extern int hdlc_ReportStatus(struct cmdargs const *); extern const char *hdlc_Protocol2Nam(u_short); +extern void hdlc_DecodePacket(struct bundle *, u_short, struct mbuf *, + struct link *); extern void HdlcInput(struct bundle *, struct mbuf *, struct physical *); extern void HdlcOutput(struct link *, int, u_short, struct mbuf *bp); extern u_short HdlcFcs(u_short, u_char *, int); -extern int ReportProtStatus(struct cmdargs const *); extern u_char *HdlcDetect(struct physical *, u_char *, int); -extern void hdlc_DecodePacket(struct bundle *, u_short, struct mbuf *, - struct link *); |