aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlib
diff options
context:
space:
mode:
Diffstat (limited to 'src/vlib')
-rw-r--r--src/vlib/defs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vlib/defs.h b/src/vlib/defs.h
index ad58bc04681..a09a25b701f 100644
--- a/src/vlib/defs.h
+++ b/src/vlib/defs.h
@@ -48,8 +48,16 @@ typedef enum
VLIB_N_RX_TX = 2, /* Used to size arrays. */
} vlib_rx_or_tx_t;
+
#define vlib_foreach_rx_tx(v) for (v = 0; v < VLIB_N_RX_TX; v++)
+/* alias the rx/tx to 'direction' */
+typedef vlib_rx_or_tx_t vlib_dir_t;
+
+#define VLIB_N_DIR VLIB_N_RX_TX
+#define FOREACH_VLIB_DIR(_dir) \
+ for (_dir = VLIB_RX; _dir <= VLIB_TX; _dir++)
+
/* Read/write. */
typedef enum
{