├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md └── src ├── dpdk_common.c └── dpdk_common.h /.gitignore: -------------------------------------------------------------------------------- 1 | objs/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/The-DPDK-Common/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/The-DPDK-Common/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/The-DPDK-Common/HEAD/README.md -------------------------------------------------------------------------------- /src/dpdk_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/The-DPDK-Common/HEAD/src/dpdk_common.c -------------------------------------------------------------------------------- /src/dpdk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/The-DPDK-Common/HEAD/src/dpdk_common.h --------------------------------------------------------------------------------