nsproxy-hickory-proto 0.25.4

Hickory DNS is a safe and secure DNS library. This is the foundational DNS protocol library for all Hickory DNS projects.
1
2
3
4
5
6
7
8
9
10
11
12
//! Tests for TCP and UDP stream and client

#![allow(clippy::print_stdout)] // this is a test module

mod tcp;
mod udp;

pub use self::tcp::tcp_client_stream_test;
pub use self::tcp::tcp_stream_test;
pub use self::udp::next_random_socket_test;
pub use self::udp::udp_client_stream_test;
pub use self::udp::udp_stream_test;