From c5a93cbf4da202e5a9efa1967de04723089b73fb Mon Sep 17 00:00:00 2001 From: wokron Date: Mon, 3 Aug 2026 11:58:42 +0800 Subject: [PATCH] add zcrx.hpp file header comment --- include/condy/zcrx.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/condy/zcrx.hpp b/include/condy/zcrx.hpp index 36fdcbaa..f54d4f6d 100644 --- a/include/condy/zcrx.hpp +++ b/include/condy/zcrx.hpp @@ -1,3 +1,13 @@ +/** + * @file zcrx.hpp + * @brief Support for io_uring zero-copy receive (zcrx) buffers. + * @details This file provides support for the io_uring zcrx feature, which + * allows data to be received directly into user-space buffers without copying. + * It defines the ZeroCopyRxBufferPool class for registering a buffer pool with + * a network interface, and the ZeroCopyRxBuffer type for buffers obtained from + * the pool. + */ + #pragma once #include "condy/detail/buffers.hpp"