aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2022-12-19 15:25:39 +0200
committerMatias Elo <matias.elo@nokia.com>2023-02-07 15:07:27 +0200
commit6b798ec547fda27329259f8c4f4695e4606a081f (patch)
treedc0475ef9d6bb7308bd11b21dba07667be810622 /include
parentf198108bd0c6210b4dc49df4a3fe5429f526d028 (diff)
api: pktio: remove deprecated in_unknown_protos statistics counter
Remove deprecated 'in_unknown_protos' field from odp_pktio_stats_t. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Jere Leppänen <jere.leppanen@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'include')
-rw-r--r--include/odp/api/spec/packet_io_stats.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/odp/api/spec/packet_io_stats.h b/include/odp/api/spec/packet_io_stats.h
index c6b782d5a..156a3a95e 100644
--- a/include/odp/api/spec/packet_io_stats.h
+++ b/include/odp/api/spec/packet_io_stats.h
@@ -19,7 +19,6 @@
extern "C" {
#endif
-#include <odp/api/deprecated.h>
#include <odp/api/queue_types.h>
/** @addtogroup odp_packet_io
@@ -68,20 +67,6 @@ typedef struct odp_pktio_stats_t {
* configuration, packets with errors may be dropped or not. */
uint64_t in_errors;
- /**
- * For packet-oriented interfaces, the number of packets received via
- * the interface which were discarded because of an unknown or
- * unsupported protocol. For character-oriented or fixed-length
- * interfaces that support protocol multiplexing the number of
- * transmission units received via the interface which were discarded
- * because of an unknown or unsupported protocol. For any interface
- * that does not support protocol multiplexing, this counter will always
- * be 0. See ifInUnknownProtos in RFC 2863, RFC 3635.
- *
- * @deprecated This counter has been deprecated.
- */
- uint64_t ODP_DEPRECATE(in_unknown_protos);
-
/** Number of octets in successfully transmitted packets. In case of
* Ethernet, packet size includes MAC header. */
uint64_t out_octets;