diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-08 05:02:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-08 05:02:10 +0000 |
commit | c1da574ca1009fd0765d0814b63388a4267ccc0a (patch) | |
tree | 955d0ec675fcf50bdd1534b6e185d4cc871d9cee /sys/net/if_pppvar.h | |
parent | de1c15bacfef205336e6ed358d45722777574cc8 (diff) |
Add support for RFC-comliant deflate protocol
Diffstat (limited to 'sys/net/if_pppvar.h')
-rw-r--r-- | sys/net/if_pppvar.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/net/if_pppvar.h b/sys/net/if_pppvar.h index 98f524fe68f..69fb536960c 100644 --- a/sys/net/if_pppvar.h +++ b/sys/net/if_pppvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pppvar.h,v 1.6 1997/09/05 04:27:00 millert Exp $ */ +/* $OpenBSD: if_pppvar.h,v 1.7 1998/05/08 05:02:08 millert Exp $ */ /* $NetBSD: if_pppvar.h,v 1.5 1997/01/03 07:23:29 mikel Exp $ */ /* * if_pppvar.h - private structures and declarations for PPP. @@ -42,6 +42,9 @@ * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +#ifndef _NET_IF_PPPVAR_H_ +#define _NET_IF_PPPVAR_H_ + /* * Supported network protocols. These values are used for * indexing sc_npmode. @@ -110,3 +113,5 @@ void ppp_restart __P((struct ppp_softc *sc)); int pppoutput __P((struct ifnet *, struct mbuf *, struct sockaddr *, struct rtentry *)); #endif /* _KERNEL */ + +#endif /* _NET_IF_PPPVAR_H_ */ |