1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:47:35 +00:00
serenity/Kernel/Net
Andreas Kling b3a1671f1a Kernel: Add support for recv() with MSG_DONTWAIT.
Passing this flag to recv() temporarily puts the file descriptor into
non-blocking mode.

Also implement LocalSocket::recv() as a simple forwarding to read().
2019-05-20 03:47:02 +02:00
..
.gitignore Kernel: Add a LoopbackAdapter for talking to yourself via 127.0.0.1. 2019-04-02 15:46:44 +02:00
ARP.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
E1000NetworkAdapter.cpp Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
E1000NetworkAdapter.h Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
EthernetFrameHeader.h Move NetworkOrdered.h to AK/ since it's used in both kernel and userspace. 2019-04-02 20:04:54 +02:00
EtherType.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
ICMP.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
IPv4.h IPv4: Default initialize IPv4Address to 0.0.0.0. 2019-05-10 18:18:54 +02:00
IPv4Socket.cpp IPv4: Rename source/destination in socket classes to local/peer. 2019-05-04 16:40:34 +02:00
IPv4Socket.h IPv4: Rename source/destination in socket classes to local/peer. 2019-05-04 16:40:34 +02:00
LocalSocket.cpp Kernel: Add support for recv() with MSG_DONTWAIT. 2019-05-20 03:47:02 +02:00
LocalSocket.h LocalSocket: Fix mismatch between can_write() and write() logic. 2019-05-20 02:54:52 +02:00
LoopbackAdapter.cpp AK: Revert Eternal<T> for now since it doesn't work as intended. 2019-04-05 05:14:20 +02:00
LoopbackAdapter.h AK: Revert Eternal<T> for now since it doesn't work as intended. 2019-04-05 05:14:20 +02:00
MACAddress.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
NetworkAdapter.cpp Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
NetworkAdapter.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
NetworkTask.cpp NetworkTask: Don't crash on startup if there's no E1000 NIC present. 2019-05-18 00:22:08 +02:00
NetworkTask.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
Routing.cpp Kernel: Add a LoopbackAdapter for talking to yourself via 127.0.0.1. 2019-04-02 15:46:44 +02:00
Routing.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
Socket.cpp Kernel: Make Socket inherit from File. 2019-05-03 20:42:43 +02:00
Socket.h Kernel: Tidy up FileDescriptor members a bit. 2019-05-18 04:14:22 +02:00
TCP.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
TCPSocket.cpp IPv4: Rename source/destination in socket classes to local/peer. 2019-05-04 16:40:34 +02:00
TCPSocket.h IPv4: Rename source/destination in socket classes to local/peer. 2019-05-04 16:40:34 +02:00
UDP.h Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
UDPSocket.cpp IPv4: Rename source/destination in socket classes to local/peer. 2019-05-04 16:40:34 +02:00
UDPSocket.h IPv4: Rename source/destination in socket classes to local/peer. 2019-05-04 16:40:34 +02:00