diff options
Diffstat (limited to 'dissector.h')
-rw-r--r-- | dissector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dissector.h b/dissector.h index 226d2bc..d8ad6ac 100644 --- a/dissector.h +++ b/dissector.h @@ -34,8 +34,8 @@ static const char * const packet_types[256] = { [PACKET_MULTICAST] = "M", /* Multicast */ [PACKET_OTHERHOST] = "P", /* Promisc */ [PACKET_OUTGOING] = ">", /* Outgoing */ - [PACKET_USER] = ">U", /* To Userspace */ - [PACKET_KERNEL] = ">K", /* To Kernelspace */ + [PACKET_USER] = "K->U", /* To Userspace */ + [PACKET_KERNEL] = "U->K", /* To Kernelspace */ }; static inline const char *__show_ts_source(uint32_t status) |