summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/ipcp.h
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1998-01-11 17:50:49 +0000
committerbrian <brian@FreeBSD.org>1998-01-11 17:50:49 +0000
commit425b212bdd92037d4fd4a47c670c5d806cf9e0ab (patch)
treed7239e66c5418688f977b6602bcdc8958bf8ed97 /usr.sbin/ppp/ipcp.h
parent86a038bcfcbf1e18826c345db5eabf350280087f (diff)
downloadFreeBSD-src-425b212bdd92037d4fd4a47c670c5d806cf9e0ab.zip
FreeBSD-src-425b212bdd92037d4fd4a47c670c5d806cf9e0ab.tar.gz
Make things work when sizeof(long) != 32 (hopefully)
Diffstat (limited to 'usr.sbin/ppp/ipcp.h')
-rw-r--r--usr.sbin/ppp/ipcp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/ppp/ipcp.h b/usr.sbin/ppp/ipcp.h
index 5402124..3c0e9e6 100644
--- a/usr.sbin/ppp/ipcp.h
+++ b/usr.sbin/ppp/ipcp.h
@@ -15,7 +15,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: ipcp.h,v 1.15 1997/12/13 02:37:24 brian Exp $
+ * $Id: ipcp.h,v 1.16 1998/01/05 01:35:19 brian Exp $
*
* TODO:
*/
@@ -40,13 +40,13 @@ extern struct in_addr nbns_entries[2];
struct ipcpstate {
struct in_addr his_ipaddr; /* IP address he is willing to use */
- u_long his_compproto;
+ u_int32_t his_compproto;
struct in_addr want_ipaddr; /* IP address I'm willing to use */
- u_long want_compproto;
+ u_int32_t want_compproto;
- u_long his_reject; /* Request codes rejected by peer */
- u_long my_reject; /* Request codes I have rejected */
+ u_int32_t his_reject; /* Request codes rejected by peer */
+ u_int32_t my_reject; /* Request codes I have rejected */
int heis1172; /* True if he is speaking rfc1172 */
};
OpenPOWER on IntegriCloud