17 lines
371 B
C++
17 lines
371 B
C++
#include "stagingBuffer.h"
|
|
|
|
namespace smo {
|
|
namespace stim_buff {
|
|
|
|
// Static defaults for io_uring
|
|
const StagingBuffer::InputEngineConstraints
|
|
StagingBuffer::InputEngineConstraints::ioUringConstraints(
|
|
4096, // slotStartAlignmentByteVal (page alignment for DMA)
|
|
1472 // slotPadToNBytes (MTU 1500 - UDP/IP header 28)
|
|
);
|
|
|
|
} // namespace stim_buff
|
|
} // namespace smo
|
|
|
|
|