aboutgitcodebugslistschat
path: root/util.h
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2023-12-08 01:31:35 +1100
committerStefano Brivio <sbrivio@redhat.com>2023-12-27 19:29:45 +0100
commit073f530bfe0b21bb7c94cd047af94f0463dfe96d (patch)
tree10550b1d10e7177ac2ba6268dd159fedd4e22c9e /util.h
parent546332786cee921213fc59db6207be23c2d70208 (diff)
downloadpasst-073f530bfe0b21bb7c94cd047af94f0463dfe96d.tar
passt-073f530bfe0b21bb7c94cd047af94f0463dfe96d.tar.gz
passt-073f530bfe0b21bb7c94cd047af94f0463dfe96d.tar.bz2
passt-073f530bfe0b21bb7c94cd047af94f0463dfe96d.tar.lz
passt-073f530bfe0b21bb7c94cd047af94f0463dfe96d.tar.xz
passt-073f530bfe0b21bb7c94cd047af94f0463dfe96d.tar.zst
passt-073f530bfe0b21bb7c94cd047af94f0463dfe96d.zip
treewide: Add IN4ADDR_ANY_INIT macro
We already define IN4ADDR_LOOPBACK_INIT to initialise a struct in_addr to the loopback address, make a similar one for the unspecified / any address. This avoids messying things with the internal structure of struct in_addr where we don't care about it. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'util.h')
-rw-r--r--util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/util.h b/util.h
index 9446ea7..fb8c3f1 100644
--- a/util.h
+++ b/util.h
@@ -122,6 +122,9 @@
(((struct in_addr *)(a))->s_addr == ((struct in_addr *)b)->s_addr)
#define IN4ADDR_LOOPBACK_INIT \
{ .s_addr = htonl_constant(INADDR_LOOPBACK) }
+#define IN4ADDR_ANY_INIT \
+ { .s_addr = htonl_constant(INADDR_ANY) }
+
#define NS_FN_STACK_SIZE (RLIMIT_STACK_VAL * 1024 / 8)
int do_clone(int (*fn)(void *), char *stack_area, size_t stack_size, int flags,