| rte_version.h(3) | Library Functions Manual | rte_version.h(3) |
rte_version.h
#include <string.h>
#include <stdio.h>
#define RTE_VERSION_NUM(a, b, c, d) ((a) << 24 | (b)
<< 16 | (c) << 8 | (d))
#define RTE_VERSION
const char * rte_version_prefix (void)
unsigned int rte_version_year (void)
unsigned int rte_version_month (void)
unsigned int rte_version_minor (void)
const char * rte_version_suffix (void)
unsigned int rte_version_release (void)
const char * rte_version (void)
Definitions of DPDK version numbers
Definition in file rte_version.h.
Macro to compute a version number usable for comparisons
Definition at line 23 of file rte_version.h.
Value:.PP
RTE_VERSION_NUM( \
RTE_VER_YEAR, \
RTE_VER_MONTH, \
RTE_VER_MINOR, \
RTE_VER_RELEASE)
All version numbers in one to compare with RTE_VERSION_NUM()
Definition at line 28 of file rte_version.h.
Function to return DPDK version prefix string
Function to return DPDK version year
Function to return DPDK version month
Function to return DPDK minor version number
Function to return DPDK version suffix for any release candidates
Function to return DPDK version release candidate value
Function returning version string
Returns
Generated automatically by Doxygen for DPDK from the source code.
| Version 24.11.3 | DPDK |