Add more from the std

This commit is contained in:
2026-03-19 11:52:43 +01:00
parent fc3a04a20e
commit 45d23efe77
116 changed files with 24256 additions and 551 deletions

View File

@@ -0,0 +1,8 @@
use crate::net::Ipv4Addr;
use crate::net::test::{sa4, tsa};
#[test]
fn to_socket_addr_socketaddr() {
let a = sa4(Ipv4Addr::new(77, 88, 21, 11), 12345);
assert_eq!(Ok(vec![a]), tsa(a));
}