[PATCH] Fix <netinet/udp.h>
Jakub Jelinek
jakub@redhat.com
Tue Oct 26 18:09:00 GMT 2004
Hi!
<sys/types.h> that <netinet/udp.h> includes only defines u_int16_t,
not uint16_t (which is in stdint.h only).
2004-10-26 Jakub Jelinek <jakub@redhat.com>
* sysdeps/gnu/netinet/udp.h (struct udphdr): Use u_int16_t
type instead of uint16_t. Formatting.
--- libc/sysdeps/gnu/netinet/udp.h.jj 2004-08-30 12:03:35.000000000 +0200
+++ libc/sysdeps/gnu/netinet/udp.h 2004-10-26 19:53:25.561108920 +0200
@@ -54,21 +54,23 @@
/* UDP header as specified by RFC 768, August 1980. */
#ifdef __FAVOR_BSD
+
struct udphdr
{
- uint16_t uh_sport; /* source port */
- uint16_t uh_dport; /* destination port */
- uint16_t uh_ulen; /* udp length */
- uint16_t uh_sum; /* udp checksum */
+ u_int16_t uh_sport; /* source port */
+ u_int16_t uh_dport; /* destination port */
+ u_int16_t uh_ulen; /* udp length */
+ u_int16_t uh_sum; /* udp checksum */
};
+
#else
struct udphdr
{
- uint16_t source;
- uint16_t dest;
- uint16_t len;
- uint16_t check;
+ u_int16_t source;
+ u_int16_t dest;
+ u_int16_t len;
+ u_int16_t check;
};
#endif
Jakub
More information about the Libc-hacker
mailing list