aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/spec/protocols.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/odp/api/spec/protocols.h')
-rw-r--r--include/odp/api/spec/protocols.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/include/odp/api/spec/protocols.h b/include/odp/api/spec/protocols.h
new file mode 100644
index 000000000..104002937
--- /dev/null
+++ b/include/odp/api/spec/protocols.h
@@ -0,0 +1,40 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright (c) 2020 Marvell
+ */
+
+/**
+ * @file
+ *
+ * ODP protocols
+ */
+
+#ifndef ODP_API_SPEC_PROTOCOLS_H_
+#define ODP_API_SPEC_PROTOCOLS_H_
+#include <odp/visibility_begin.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @defgroup odp_protocols ODP PROTOCOLS
+ * Network protocols
+ * @{
+ */
+
+/** IPv4 address size */
+#define ODP_IPV4_ADDR_SIZE 4
+
+/** IPv6 address size */
+#define ODP_IPV6_ADDR_SIZE 16
+
+/**
+ * @}
+ */
+
+#ifdef __cplusplus
+}
+#endif
+
+#include <odp/visibility_end.h>
+#endif