summaryrefslogtreecommitdiff
path: root/Kernel/Net
AgeCommit message (Expand)Author
2022-05-26Kernel: Add support for route flagsbrapru
2022-05-01Kernel: Stop exposing gateway fieldMaciej
2022-04-30Kernel+route: Support global routing table deletionbrapru
2022-04-30Kernel: Make Route's operator== overload constbrapru
2022-04-28Kernel: Add a global routing tablebrapru
2022-04-28Kernel: Generalize the UpdateArp table to UpdateTablebrapru
2022-04-21Kernel: Allow sys$bind() on local sockets with short socket addressAndreas Kling
2022-04-21Kernel: Report AF_UNIX address family when accepting local socketsAndreas Kling
2022-04-09Kernel: Move NNRP<Socket>s instead of copying in queue_connection_fromIdan Horowitz
2022-04-09Kernel: Accept NNRP<Socket> instead of RP<Socket> in release_for_acceptIdan Horowitz
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-18Kernel: When receiving unexpected TCP flags, print the flagsAndreas Kling
2022-03-18Kernel: Rename TCPFlags::PUSH => PSHAndreas Kling
2022-03-17Kernel: Make number of RTL8168 rx/tx descriptors constexprLenny Maiorani
2022-03-17Kernel: Use default constructors/destructorsLenny Maiorani
2022-03-14Kernel/PCI: Don't hold spinlocks when doing fast device enumerationLiav A
2022-03-02Kernel/Net: Don't try to enumerate PCI adapters if PCI is disabledLiav A
2022-02-27Kernel: Add UDPSocket::try_for_each() for fallible iterationIdan Horowitz
2022-02-27Kernel: Add TCPSocket::try_for_each() for fallible iterationIdan Horowitz
2022-02-27Kernel: Add LocalSocket::try_for_each() for fallible iterationIdan Horowitz
2022-02-27Kernel: Add NetworkingManagement::try_for_each() for fallible iterationIdan Horowitz
2022-02-18Kernel: Lock socket Mutex when servicing IPv4Socket ioctlsIdan Horowitz
2022-02-11Kernel/Net: Don't update TCP socket "last sent ACK" field too earlyAndreas Kling
2022-02-11Kernel/E1000: Bump RX/TX buffer count to 256/256Andreas Kling
2022-02-07Kernel: Fix bug in TCP state handling in SynSentJamie Mansfield
2022-02-07Kernel: Robustify and rename Inode bound socket APIAndreas Kling
2022-02-06Kernel: Fix bugs in TCP state handling in FinWait1 & FinWait2Andreas Kling
2022-02-06Kernel: Send only FIN when shutting down TCP socket from ESTABLISHEDAndreas Kling
2022-02-03Kernel: Ignore allocation failures when trying to retransmit packetsIdan Horowitz
2022-02-03Kernel: Protect network adapter list with spinlock instead of mutexAndreas Kling
2022-02-03Kernel: Protect ARP table with spinlock instead of mutexAndreas Kling
2022-01-29Kernel: Stop using HashMap in MutexIdan Horowitz
2022-01-25Kernel: Use u64 instead of size_t for File::can_write offsetIdan Horowitz
2022-01-25Kernel: Use u64 instead of size_t for File::can_read offsetIdan Horowitz
2022-01-24Everywhere: Convert ByteBuffer factory methods from Optional -> ErrorOrSam Atkins
2022-01-18Kernel: Fix typo in Socket::getsockopt tracingBrian Gianforcaro
2022-01-12Kernel: Convert IPv4SocketTuple::to_string() to KStringIdan Horowitz
2022-01-12Kernel: Move IPv4SocketTuple into the Kernel namespaceIdan Horowitz
2022-01-09Kernel: Harden Socket::pseudo_path(..) implementations against OOMBrian Gianforcaro
2022-01-08Kernel: Lock weak pointer revocation during listed-ref-counted unrefAndreas Kling
2022-01-06Kernel: Remove redundant socket_by_tuple removal in ~TCPSocket()Andreas Kling
2022-01-06Kernel: Lock TCPSocket lookup table across destructionAndreas Kling
2022-01-05Kernel: Use MUST + Vector::try_append instead of Vector::appendBrian Gianforcaro
2021-12-31Kernel: Update E1000 link state using interruptdrblah
2021-12-30Kernel: Tighten String-related includesDaniel Bertalan
2021-12-30Kernel: Remove redundant (K)String::characters() callsDaniel Bertalan
2021-12-30Kernel+AK: Eliminate a couple of temporary String allocationsDaniel Bertalan
2021-12-29Kernel: Handle promise violations in the syscall handlerBrian Gianforcaro
2021-12-29Kernel: Use Process::require_promise() instead of REQUIRE_PROMISE()Brian Gianforcaro
2021-12-28Kernel: Propagate overflow errors from Memory::page_round_upGuilherme Goncalves