solisten: mask clang warnings in inet_sock.h

Signed-off-by: Jean-Tiare Le Bigot <jt@yadutaf.fr>
diff --git a/tools/solisten.py b/tools/solisten.py
index b322af9..72ef315 100755
--- a/tools/solisten.py
+++ b/tools/solisten.py
@@ -46,10 +46,12 @@
 
 # BPF Program
 bpf_text = """
-#include <net/sock.h>
-#include <net/inet_sock.h>
 #include <net/net_namespace.h>
 #include <bcc/proto.h>
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wenum-conversion"
+#include <net/inet_sock.h>
+#pragma clang diagnostic pop
 
 // Common structure for UDP/TCP IPv4/IPv6
 struct listen_evt_t {