Home
last modified time | relevance | path

Searched refs:EADDRNOTAVAIL (Results 1 – 3 of 3) sorted by relevance

/DragonOS/kernel/src/common/
H A Derrno.h111 #define EADDRNOTAVAIL 99 /* 地址不可用 Address not available. */ macro
/DragonOS/kernel/crates/system_error/src/
H A Dlib.rs208 EADDRNOTAVAIL = 99, enumerator
/DragonOS/kernel/src/net/socket/
H A Dinet.rs791 tcp::ConnectError::Unaddressable => return Err(SystemError::EADDRNOTAVAIL), in connect()