diff options
Diffstat (limited to 'src/vppinfra')
-rw-r--r-- | src/vppinfra/socket.c | 6 | ||||
-rw-r--r-- | src/vppinfra/unix-formats.c | 13 |
2 files changed, 13 insertions, 6 deletions
diff --git a/src/vppinfra/socket.c b/src/vppinfra/socket.c index 32260614942..3271393529d 100644 --- a/src/vppinfra/socket.c +++ b/src/vppinfra/socket.c @@ -38,6 +38,7 @@ #include <stdio.h> #include <string.h> /* strchr */ #define __USE_GNU +#define _GNU_SOURCE #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> @@ -54,6 +55,11 @@ #include <vppinfra/format.h> #include <vppinfra/error.h> +#ifndef __GLIBC__ +/* IPPORT_USERRESERVED is not part of musl libc. */ +#define IPPORT_USERRESERVED 5000 +#endif + __clib_export void clib_socket_tx_add_formatted (clib_socket_t * s, char *fmt, ...) { diff --git a/src/vppinfra/unix-formats.c b/src/vppinfra/unix-formats.c index fd0539c7d2b..678700e6129 100644 --- a/src/vppinfra/unix-formats.c +++ b/src/vppinfra/unix-formats.c @@ -50,7 +50,6 @@ #define _GNU_SOURCE /* to get REG_* in ucontext.h */ #include <ucontext.h> -#undef _GNU_SOURCE #undef __USE_GNU #include <unistd.h> @@ -317,11 +316,13 @@ u8 * format_udp4_packet (u8 * s, va_list * args) struct iphdr * ip = (void *) p; struct udphdr * udp = (void *) (ip + 1); - s = format (s, "udp %U:%U -> %U:%U", - format_network_address, AF_INET, &ip->saddr, - format_network_port, IPPROTO_UDP, ntohs (udp->source), - format_network_address, AF_INET, &ip->daddr, - format_network_port, IPPROTO_UDP, ntohs (udp->dest)); + u16 source = udp->uh_sport; + u16 dest = udp->uh_dport; + + s = format (s, "udp %U:%U -> %U:%U", format_network_address, AF_INET, + &ip->saddr, format_network_port, IPPROTO_UDP, ntohs (source), + format_network_address, AF_INET, &ip->daddr, format_network_port, + IPPROTO_UDP, ntohs (dest)); return s; } |