summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/lcp.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 04:13:48 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 04:13:48 +0000
commit8a4f22e64ec09db4075cccb24dc290386ce16a95 (patch)
treeed36905d0a1fc10730f98c409906b4a1c110340b /cpukit/pppd/lcp.h
parent2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-8a4f22e64ec09db4075cccb24dc290386ce16a95.tar.bz2
Convert to using C99 fixed-size types instead of BSD fixed-size types.
Diffstat (limited to 'cpukit/pppd/lcp.h')
-rw-r--r--cpukit/pppd/lcp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/pppd/lcp.h b/cpukit/pppd/lcp.h
index 5f399e5906..6231d270ae 100644
--- a/cpukit/pppd/lcp.h
+++ b/cpukit/pppd/lcp.h
@@ -58,10 +58,10 @@ typedef struct lcp_options {
bool neg_cbcp; /* Negotiate use of CBCP */
int mru; /* Value of MRU */
u_char chap_mdtype; /* which MD type (hashing algorithm) */
- u_int32_t asyncmap; /* Value of async map */
- u_int32_t magicnumber;
+ uint32_t asyncmap; /* Value of async map */
+ uint32_t magicnumber;
int numloops; /* Number of loops during magic number neg. */
- u_int32_t lqr_period; /* Reporting period for LQR 1/100ths second */
+ uint32_t lqr_period; /* Reporting period for LQR 1/100ths second */
} lcp_options;
extern fsm lcp_fsm[];
@@ -69,7 +69,7 @@ extern lcp_options lcp_wantoptions[];
extern lcp_options lcp_gotoptions[];
extern lcp_options lcp_allowoptions[];
extern lcp_options lcp_hisoptions[];
-extern u_int32_t xmit_accm[][8];
+extern uint32_t xmit_accm[][8];
#define DEFMRU 1500 /* Try for this */
#define MINMRU 128 /* No MRUs below this */