summaryrefslogtreecommitdiff
path: root/Kernel/Net
AgeCommit message (Expand)Author
2020-03-15Userland: ifconfig can change the IP address of the default gatewaymarprok
2020-03-11Userland: Set the mask of a network adapter with ifconfig (#1388)Marios Prokopakis
2020-03-09PCI: Enable LogStream output for addressesLiav A
2020-03-08Kernel: Ensure RTL8139NetworkAdapter uses virtual memory correctlyLiav A
2020-03-08Kernel: Ensure E1000NetworkAdapter uses virtual memory correctlyLiav A
2020-03-08AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*)Andreas Kling
2020-03-07IPv4: Keep IPv4 socket locked during receive operationsAndreas Kling
2020-03-06Kernel: Change HandlerPurpose to HandlerTypeLiav A
2020-03-02Kernel: Use klog() instead of kprintf()Liav A
2020-03-02Kernel: Use IOAddress class in Network adapters' driversLiav A
2020-03-01Kernel: Remove some unnecessary .characters() when doing dbg()<<StringAndreas Kling
2020-02-27E1000NetworkAdapter: Use dbg() instead of dbgprintf()Liav A
2020-02-27LoopbackAdapter: Use dbg() instead of dbgprintf()Liav A
2020-02-27IPv4Socket: Use dbg() instead of dbgprintf()Liav A
2020-02-25AK: Make Vector use size_t for its size and capacityAndreas Kling
2020-02-24Kernel: Change get_pci_address() to pci_address() in PCI::Device classLiav A
2020-02-24Kernel: Update Network adapter classes to use the PCI::Device classLiav A
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