2025-10-30 14:26:27 -04:00
|
|
|
#include "stagingBuffer.h"
|
|
|
|
|
|
|
|
|
|
namespace smo {
|
|
|
|
|
namespace stim_buff {
|
|
|
|
|
|
|
|
|
|
const StagingBuffer::InputEngineConstraints
|
|
|
|
|
StagingBuffer::InputEngineConstraints::ioUringConstraints{
|
|
|
|
|
16, // nBytesPerPoint
|
|
|
|
|
28, // udpHeaderOverheadNBytes
|
|
|
|
|
1500 // mtuNBytes
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace stim_buff
|
|
|
|
|
} // namespace smo
|
|
|
|
|
|
2025-10-25 14:44:43 -04:00
|
|
|
|