Searched refs:LINK_LOCAL_ADDR (Results 1 – 1 of 1) sorted by relevance
/smoltcp-0.9.1/src/wire/ |
D | ipv6.rs | 755 static LINK_LOCAL_ADDR: Address = Address([ variable 773 assert!(!LINK_LOCAL_ADDR.is_unspecified()); in test_basic_link_local() 774 assert!(!LINK_LOCAL_ADDR.is_multicast()); in test_basic_link_local() 775 assert!(LINK_LOCAL_ADDR.is_link_local()); in test_basic_link_local() 776 assert!(!LINK_LOCAL_ADDR.is_loopback()); in test_basic_link_local() 820 assert_eq!(Address::new(0xfe80, 0, 0, 0, 0, 0, 0, 1), LINK_LOCAL_ADDR); in test_new() 843 LINK_LOCAL_ADDR in test_from_parts() 859 LINK_LOCAL_ADDR.write_parts(&mut bytes); in test_write_parts() 860 assert_eq!(LINK_LOCAL_ADDR, Address::from_parts(&bytes)); in test_write_parts() 923 let cidr = Cidr::new(LINK_LOCAL_ADDR, 56); in test_cidr() [all …]
|