2005-05-07 Ralf Corsepius <ralf.corsepius@rtems.org>

* libnetworking/rtems/rtems_bsdnet.h: Eliminate rtems_* fixed size
	types.
This commit is contained in:
Ralf Corsepius
2005-05-07 13:07:57 +00:00
parent 791055eba1
commit c4ef8434a4
2 changed files with 13 additions and 8 deletions
+5
View File
@@ -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.
+8 -8
View File
@@ -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;