mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-25 21:15:53 +08:00
2005-05-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* libnetworking/rtems/rtems_bsdnet.h: Eliminate rtems_* fixed size types.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2005-05-07 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libnetworking/rtems/rtems_bsdnet.h: Eliminate rtems_* fixed size
|
||||
types.
|
||||
|
||||
2005-05-06 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* libnetworking/rtems/rtems_showifstat.c: Remove warning.
|
||||
|
||||
@@ -189,18 +189,18 @@ extern int rtems_bsdnet_ntp_bcast_timeout_secs;
|
||||
|
||||
|
||||
struct timestamp {
|
||||
rtems_unsigned32 integer;
|
||||
rtems_unsigned32 fraction;
|
||||
uint32_t integer;
|
||||
uint32_t fraction;
|
||||
};
|
||||
|
||||
/* Data is passed in network byte order */
|
||||
struct ntpPacketSmall {
|
||||
rtems_unsigned8 li_vn_mode;
|
||||
rtems_unsigned8 stratum;
|
||||
rtems_signed8 poll_interval;
|
||||
rtems_signed8 precision;
|
||||
rtems_signed32 root_delay;
|
||||
rtems_signed32 root_dispersion;
|
||||
uint8_t li_vn_mode;
|
||||
uint8_t stratum;
|
||||
int8_t poll_interval;
|
||||
int8_t precision;
|
||||
int32_t root_delay;
|
||||
int32_t root_dispersion;
|
||||
char reference_identifier[4];
|
||||
struct timestamp reference_timestamp;
|
||||
struct timestamp originate_timestamp;
|
||||
|
||||
Reference in New Issue
Block a user