Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions include/condy/zcrx.hpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading