pub mod client_pair;
pub mod echo_server;
pub mod helpers;
pub mod integration_helpers;
pub mod logging;
pub mod macros;
pub mod multi_packet;
pub mod observability;
pub mod reassembly;
pub use client_pair::{WireframePair, spawn_wireframe_pair, spawn_wireframe_pair_default};
pub use echo_server::{ServerMode, process_frame};
pub use helpers::{
MAX_SLOW_IO_CAPACITY,
MaxFrameLength,
PayloadLength,
SlowIoConfig,
SlowIoPacing,
TEST_MAX_FRAME,
TestSerializer,
TransactionId,
correlated_hotline_wire,
decode_frames,
decode_frames_with_codec,
decode_frames_with_max,
drive_with_bincode,
drive_with_codec_frames,
drive_with_codec_frames_with_capacity,
drive_with_codec_payloads,
drive_with_codec_payloads_mut,
drive_with_codec_payloads_with_capacity,
drive_with_codec_payloads_with_capacity_mut,
drive_with_fragment_frames,
drive_with_fragments,
drive_with_fragments_mut,
drive_with_fragments_with_capacity,
drive_with_frame,
drive_with_frame_mut,
drive_with_frame_with_capacity,
drive_with_frames,
drive_with_frames_mut,
drive_with_frames_with_capacity,
drive_with_partial_codec_frames,
drive_with_partial_fragments,
drive_with_partial_frames,
drive_with_partial_frames_mut,
drive_with_partial_frames_with_capacity,
drive_with_payloads,
drive_with_payloads_mut,
drive_with_slow_codec_frames,
drive_with_slow_codec_payloads,
drive_with_slow_frames,
drive_with_slow_payloads,
encode_frame,
encode_payloads_with_codec,
extract_payloads,
mismatched_total_size_wire,
new_test_codec,
oversized_hotline_wire,
run_app,
run_with_duplex_server,
sequential_hotline_wire,
truncated_hotline_header,
truncated_hotline_payload,
valid_hotline_frame,
valid_hotline_wire,
};
pub use integration_helpers::{
CommonHandler,
CommonTestApp,
CommonTestEnvelope,
Echo,
TestApp,
TestError,
TestResult,
echo_app_factory,
echo_handler,
factory,
unused_listener,
};
pub use logging::{LoggerHandle, logger};
#[doc(inline)]
pub use multi_packet::collect_multi_packet;
pub use observability::{Labels, ObservabilityHandle, obs_handle};