summaryrefslogtreecommitdiff
path: root/Kernel/Net
AgeCommit message (Expand)Author
2020-02-17Kernel: Replace "current" with Thread::current and Process::currentAndreas Kling
2020-02-16Kernel: More header dependency reduction workAndreas Kling
2020-02-16Kernel: Reduce header dependencies of MemoryManager and RegionAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-10AK: Remove bitrotted Traits::dump() mechanismAndreas Kling
2020-02-09Kernel: Apply changes to use LibBareMetal definitionsLiav A
2020-02-09Net: Short-circuit routing to the IPv4 address of a local adapterAndreas Kling
2020-02-09Net: When routing to loopback, use the loopback adapter's MAC addressAndreas Kling
2020-02-09Net: Give the LoopbackAdapter a MAC addressAndreas Kling
2020-02-08IPv4: Put some TCP close handshake debug spam behind TCP_SOCKET_DEBUGAndreas Kling
2020-02-08IPv4: Sockets should say can_read() after reading is shut downAndreas Kling
2020-02-08IPv4: Basic implementation of TCP socket shutdownAndreas Kling
2020-02-08IPv4: Don't ACK empty TCP packetsAndreas Kling
2020-02-08IPv4: Split IPv4Socket::recvfrom() into packet/byte buffered functionsAndreas Kling
2020-02-08IPv4: Send TCP packets right away instead of waiting to "retry"Andreas Kling
2020-02-08IPv4: Drop incoming packets on sockets that are shut down for readingAndreas Kling
2020-02-08Net: Add a basic sys$shutdown() implementationAndreas Kling
2020-02-08Net: Make NetworkAdapter reference-countedAndreas Kling
2020-02-07Kernel: Fix three broken format strings in Socket::{get,set}sockopt()Andreas Kling
2020-02-07Kernel: Truncate addresses stored by getsockname() and getpeername()Andreas Kling
2020-02-02Kernel: Detect devices when enumerating the PCI busLiav A
2020-01-30Kernel: LocalSocket should fail with EADDRINUSE for already-bound filesAndreas Kling
2020-01-30Kernel: Some more int => size_t in NetworkAdapter and subclassesAndreas Kling
2020-01-29Kernel: Make IPv4Socket::protocol_send() use a size_t for buffer sizeAndreas Kling
2020-01-26Kernel: read()/write() should respect timeouts when used on a socketsAndreas Kling
2020-01-26IPv4: Mark UDP sockets as connected immediately upon connect()Andreas Kling
2020-01-26IPv4: Fix bitrot in IPv4Socket debug loggingAndreas Kling
2020-01-26IPv4: Don't hold IPv4Socket lock when blocking on byte-buffered receiveAndreas Kling
2020-01-26Kernel: Zero-initialize LocalSocket::m_addressAndreas Kling
2020-01-23Kernel: Allow Socket subclasses to fail constructionAndreas Kling
2020-01-22Revert "Kernel: Replace IRQHandler with the new InterruptHandler class"Andreas Kling
2020-01-22Kernel: Replace IRQHandler with the new InterruptHandler classLiav A
2020-01-21Kernel: Make O_RDONLY non-zeroAndreas Kling
2020-01-20Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ingAndreas Kling
2020-01-20Use uintptr_t instead of u32 when storing pointers as integersAndreas Kling
2020-01-18Kernel: Pass correct permission flags when opening filesSergey Bugaev
2020-01-18RTL8139: Unbreak RealTek Ethernet driver after paging changesAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17Kernel: Move kernel above the 3GB virtual address markAndreas Kling
2020-01-14Kernel: Fixing E1000 MMIO accessLiav A
2020-01-12IPv4: Require "inet" promise for ioctl() on an IPv4SocketAndreas Kling
2020-01-11Kernel: Remove SmapDisabler in bind()Andreas Kling
2020-01-10Kernel: Fix kernel null deref on process crash during join_thread()Andreas Kling
2020-01-09Kernel: Don't apply process umask to the LocalSocket prebind modeAndreas Kling
2020-01-09Kernel: connect() should EISCONN on already-connected LocalSocketAndreas Kling
2020-01-08IPv4: Randomize the first TCP sequence numberAndreas Kling
2020-01-07Kernel: Make Socket::absolute_path() pure virtualAndreas Kling
2020-01-04Kernel: Make LocalSocket pre-bind GID be gid_t (#1012)erf
2020-01-03Kernel: Allow fchmod() and fchown() on pre-bind() local socketsAndreas Kling
2020-01-03Kernel: Add a more expressive API for getting random bytesAndreas Kling