├── .gitignore ├── 001 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── 002 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── 003 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── 004 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── 005 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── 006 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── 007 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── 008 ├── Makefile ├── README.md ├── client.c ├── client_xdp.c ├── server.c └── server_xdp.c ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/.gitignore -------------------------------------------------------------------------------- /001/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/001/Makefile -------------------------------------------------------------------------------- /001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/001/README.md -------------------------------------------------------------------------------- /001/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/001/client.c -------------------------------------------------------------------------------- /001/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/001/client_xdp.c -------------------------------------------------------------------------------- /001/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/001/server.c -------------------------------------------------------------------------------- /001/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/001/server_xdp.c -------------------------------------------------------------------------------- /002/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/002/Makefile -------------------------------------------------------------------------------- /002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/002/README.md -------------------------------------------------------------------------------- /002/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/002/client.c -------------------------------------------------------------------------------- /002/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/002/client_xdp.c -------------------------------------------------------------------------------- /002/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/002/server.c -------------------------------------------------------------------------------- /002/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/002/server_xdp.c -------------------------------------------------------------------------------- /003/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/003/Makefile -------------------------------------------------------------------------------- /003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/003/README.md -------------------------------------------------------------------------------- /003/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/003/client.c -------------------------------------------------------------------------------- /003/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/003/client_xdp.c -------------------------------------------------------------------------------- /003/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/003/server.c -------------------------------------------------------------------------------- /003/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/003/server_xdp.c -------------------------------------------------------------------------------- /004/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/004/Makefile -------------------------------------------------------------------------------- /004/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/004/README.md -------------------------------------------------------------------------------- /004/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/004/client.c -------------------------------------------------------------------------------- /004/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/004/client_xdp.c -------------------------------------------------------------------------------- /004/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/004/server.c -------------------------------------------------------------------------------- /004/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/004/server_xdp.c -------------------------------------------------------------------------------- /005/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/005/Makefile -------------------------------------------------------------------------------- /005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/005/README.md -------------------------------------------------------------------------------- /005/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/005/client.c -------------------------------------------------------------------------------- /005/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/005/client_xdp.c -------------------------------------------------------------------------------- /005/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/005/server.c -------------------------------------------------------------------------------- /005/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/005/server_xdp.c -------------------------------------------------------------------------------- /006/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/006/Makefile -------------------------------------------------------------------------------- /006/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/006/README.md -------------------------------------------------------------------------------- /006/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/006/client.c -------------------------------------------------------------------------------- /006/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/006/client_xdp.c -------------------------------------------------------------------------------- /006/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/006/server.c -------------------------------------------------------------------------------- /006/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/006/server_xdp.c -------------------------------------------------------------------------------- /007/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/007/Makefile -------------------------------------------------------------------------------- /007/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/007/README.md -------------------------------------------------------------------------------- /007/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/007/client.c -------------------------------------------------------------------------------- /007/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/007/client_xdp.c -------------------------------------------------------------------------------- /007/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/007/server.c -------------------------------------------------------------------------------- /007/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/007/server_xdp.c -------------------------------------------------------------------------------- /008/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/008/Makefile -------------------------------------------------------------------------------- /008/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/008/README.md -------------------------------------------------------------------------------- /008/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/008/client.c -------------------------------------------------------------------------------- /008/client_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/008/client_xdp.c -------------------------------------------------------------------------------- /008/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/008/server.c -------------------------------------------------------------------------------- /008/server_xdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/008/server_xdp.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-bandwidth/af_xdp/HEAD/README.md --------------------------------------------------------------------------------