quic: Add Tx, Rx and packet drop counters
[vpp.git] / src / plugins / quic / quic.h
index 5b821d7..777820e 100644 (file)
 #define QUIC_DBG(_lvl, _fmt, _args...)
 #endif
 
+extern vlib_node_registration_t quic_input_node;
+
+typedef enum
+{
+#define quic_error(n,s) QUIC_ERROR_##n,
+#include <plugins/quic/quic_error.def>
+#undef quic_error
+  QUIC_N_ERROR,
+} quic_error_t;
+
 typedef enum quic_ctx_conn_state_
 {
   QUIC_CONN_STATE_OPENED,