summaryrefslogtreecommitdiff
path: root/Kernel/Net/IPv4Socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Net/IPv4Socket.cpp')
-rw-r--r--Kernel/Net/IPv4Socket.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/Kernel/Net/IPv4Socket.cpp b/Kernel/Net/IPv4Socket.cpp
index 54326ce9a2..260c878e22 100644
--- a/Kernel/Net/IPv4Socket.cpp
+++ b/Kernel/Net/IPv4Socket.cpp
@@ -170,7 +170,7 @@ bool IPv4Socket::can_read(const FileDescription&, size_t) const
bool IPv4Socket::can_write(const FileDescription&, size_t) const
{
- return is_connected();
+ return true;
}
PortAllocationResult IPv4Socket::allocate_local_port_if_needed()
@@ -206,6 +206,9 @@ KResultOr<size_t> IPv4Socket::sendto(FileDescription&, const UserOrKernelBuffer&
m_peer_port = ntohs(ia.sin_port);
}
+ if (!is_connected() && m_peer_address.is_zero())
+ return EPIPE;
+
auto routing_decision = route_to(m_peer_address, m_local_address, bound_interface());
if (routing_decision.is_zero())
return EHOSTUNREACH;