From 9d19f5bc7398710fa4a5dd7173a1f84879de988e Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Tue, 7 Sep 2021 11:50:06 +0200 Subject: passt: Add epoll event indication and passt/pasta mode in socket debug message Signed-off-by: Stefano Brivio --- passt.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'passt.c') diff --git a/passt.c b/passt.c index 73c537a..8bed7bb 100644 --- a/passt.c +++ b/passt.c @@ -85,7 +85,9 @@ char *ip_proto_str[IPPROTO_SCTP + 1] = { static void sock_handler(struct ctx *c, union epoll_ref ref, uint32_t events, struct timespec *now) { - debug("%s packet from socket %i", IP_PROTO_STR(ref.proto), ref.s); + debug("%s: %s packet from socket %i (events: 0x%08x)", + c->mode == MODE_PASST ? "passt" : "pasta", + IP_PROTO_STR(ref.proto), ref.s, events); if (!c->no_tcp && ref.proto == IPPROTO_TCP) tcp_sock_handler( c, ref, events, now); -- cgit v1.2.3