1
0
mirror of https://passt.top/passt synced 2024-07-01 23:42:41 +00:00

passt: Add epoll event indication and passt/pasta mode in socket debug message

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2021-09-07 11:50:06 +02:00
parent 3df5debf37
commit 9d19f5bc73

View File

@ -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);