diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2023-08-01 13:36:46 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2023-08-04 01:17:57 +0200 |
commit | 8218d990138b7da8411351488ea06243134ae37b (patch) | |
tree | 518c9c6cd5a8915b10d35adf24cc5283f8b9de05 /util.c | |
parent | 649068a287b2b559f83b6d255c66221991d68327 (diff) | |
download | passt-8218d990138b7da8411351488ea06243134ae37b.tar passt-8218d990138b7da8411351488ea06243134ae37b.tar.gz passt-8218d990138b7da8411351488ea06243134ae37b.tar.bz2 passt-8218d990138b7da8411351488ea06243134ae37b.tar.lz passt-8218d990138b7da8411351488ea06243134ae37b.tar.xz passt-8218d990138b7da8411351488ea06243134ae37b.tar.zst passt-8218d990138b7da8411351488ea06243134ae37b.zip |
Use C11 anonymous members to make poll refs less verbose to use
union epoll_ref has a deeply nested set of structs and unions to let us
subdivide it into the various different fields we want. This means that
referencing elements can involve an awkward long string of intermediate
fields.
Using C11 anonymous structs and unions lets us do this less clumsily.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -102,7 +102,7 @@ int sock_l4(const struct ctx *c, int af, uint8_t proto, const void *bind_addr, const char *ifname, uint16_t port, uint32_t data) { - union epoll_ref ref = { .r.proto = proto, .r.p.data = data }; + union epoll_ref ref = { .proto = proto, .data = data }; struct sockaddr_in addr4 = { .sin_family = AF_INET, .sin_port = htons(port), @@ -145,7 +145,7 @@ int sock_l4(const struct ctx *c, int af, uint8_t proto, return -EBADF; } - ref.r.s = fd; + ref.s = fd; if (af == AF_INET) { if (bind_addr) |