From bcbe728187c7239d43d0fe32eaa0f07d09f7e765 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Fri, 7 Jul 2023 17:33:04 +0200 Subject: cooker/calls: Add support for bind() ...no examples yet, but it's trivial as the prototype is exactly the same as connect(). Signed-off-by: Stefano Brivio --- cooker/calls/net.c | 1 + 1 file changed, 1 insertion(+) (limited to 'cooker/calls') diff --git a/cooker/calls/net.c b/cooker/calls/net.c index 74ea668..a348037 100644 --- a/cooker/calls/net.c +++ b/cooker/calls/net.c @@ -245,6 +245,7 @@ static struct arg connect_args[] = { struct call syscalls_net[] = { { __NR_connect, "connect", connect_args }, + { __NR_bind, "bind", connect_args }, { __NR_socket, "socket", socket_args }, { 0 }, }; -- cgit v1.2.3