aboutgitcodebugslistschat
path: root/passt.c
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2021-09-07 11:50:06 +0200
committerStefano Brivio <sbrivio@redhat.com>2021-09-09 15:40:04 +0200
commit9d19f5bc7398710fa4a5dd7173a1f84879de988e (patch)
treefde8d458b28c8748caa1357e1e2200fec38a8b1b /passt.c
parent3df5debf378a5d4a9cbe3223dcb15dd271991193 (diff)
downloadpasst-9d19f5bc7398710fa4a5dd7173a1f84879de988e.tar
passt-9d19f5bc7398710fa4a5dd7173a1f84879de988e.tar.gz
passt-9d19f5bc7398710fa4a5dd7173a1f84879de988e.tar.bz2
passt-9d19f5bc7398710fa4a5dd7173a1f84879de988e.tar.lz
passt-9d19f5bc7398710fa4a5dd7173a1f84879de988e.tar.xz
passt-9d19f5bc7398710fa4a5dd7173a1f84879de988e.tar.zst
passt-9d19f5bc7398710fa4a5dd7173a1f84879de988e.zip
passt: Add epoll event indication and passt/pasta mode in socket debug message
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'passt.c')
-rw-r--r--passt.c4
1 files changed, 3 insertions, 1 deletions
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);