Kernel: Remove unnecessary interface lookup

This prevented connecting to local sockets listening on INADDR_ANY
This commit is contained in:
Bananymous 2026-02-22 17:19:26 +02:00
parent 8edd63d115
commit 9445332499
1 changed files with 0 additions and 1 deletions

View File

@ -231,7 +231,6 @@ namespace Kernel
if (!receiver) if (!receiver)
return BAN::Error::from_errno(EADDRNOTAVAIL); return BAN::Error::from_errno(EADDRNOTAVAIL);
TRY(socket.interface(receiver->address(), receiver->address_len()));
} }
BAN::Vector<uint8_t> packet_buffer; BAN::Vector<uint8_t> packet_buffer;