aboutgitcodebugslistschat
path: root/util.h
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2024-07-05 20:43:59 +1000
committerStefano Brivio <sbrivio@redhat.com>2024-07-05 15:26:09 +0200
commit74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a (patch)
treecc0a026b427dcde9d2dc870bb972ef5e9bedb9e8 /util.h
parentb625ed5feebaac457311fe5299c3ee99dab5503a (diff)
downloadpasst-74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a.tar
passt-74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a.tar.gz
passt-74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a.tar.bz2
passt-74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a.tar.lz
passt-74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a.tar.xz
passt-74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a.tar.zst
passt-74c1c5efcfec9fcdb6efe0c8d377af2a7d8e4b0a.zip
util: sock_l4() determine protocol from epoll type rather than the reverse
sock_l4() creates a socket of the given IP protocol number, and adds it to the epoll state. Currently it determines the correct tag for the epoll data based on the protocol. However, we have some future cases where we might want different semantics, and therefore epoll types, for sockets of the same protocol. So, change sock_l4() to take the epoll type as an explicit parameter, and determine the protocol from that. 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, 2 insertions, 1 deletions
diff --git a/util.h b/util.h
index eebb027..d015039 100644
--- a/util.h
+++ b/util.h
@@ -137,13 +137,14 @@ int do_clone(int (*fn)(void *), char *stack_area, size_t stack_size, int flags,
#include <limits.h>
#include <stdint.h>
+#include "epoll_type.h"
#include "packet.h"
struct ctx;
/* cppcheck-suppress funcArgNamesDifferent */
__attribute__ ((weak)) int ffsl(long int i) { return __builtin_ffsl(i); }
-int sock_l4(const struct ctx *c, sa_family_t af, uint8_t proto,
+int sock_l4(const struct ctx *c, sa_family_t af, enum epoll_type type,
const void *bind_addr, const char *ifname, uint16_t port,
uint32_t data);
void sock_probe_mem(struct ctx *c);