mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-01 18:53:17 +00:00
fix missing type
This commit is contained in:
@@ -488,7 +488,7 @@ void BSD::ExecuteWork(HLERequestContext& ctx, Work work) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::pair<s32, Network::Errno> BSD::SocketImpl(Network::Domain domain, Network::Type type, Network::Protocol protocol) {
|
std::pair<s32, Network::Errno> BSD::SocketImpl(Network::Domain domain, Network::Type type, Network::Protocol protocol) {
|
||||||
LOG_DEBUG(Network, "domain={},type,protocol={}", u32(domain), u32(type), u32(protocol));
|
LOG_DEBUG(Network, "domain={},type={},protocol={}", u32(domain), u32(type), u32(protocol));
|
||||||
if (type == Network::Type::SEQPACKET) {
|
if (type == Network::Type::SEQPACKET) {
|
||||||
UNIMPLEMENTED_MSG("SOCK_SEQPACKET errno management");
|
UNIMPLEMENTED_MSG("SOCK_SEQPACKET errno management");
|
||||||
} else if (type == Network::Type::RAW && (domain != Network::Domain::INET || protocol != Network::Protocol::ICMP)) {
|
} else if (type == Network::Type::RAW && (domain != Network::Domain::INET || protocol != Network::Protocol::ICMP)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user