summaryrefslogtreecommitdiff
path: root/Kernel/Net
AgeCommit message (Expand)Author
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
2021-12-28Kernel: Remove the kmalloc_eternal heap :^)Andreas Kling
2021-12-28Kernel: Lock socket mutex across {get,set}sockopt() and SO_ERROR updatesAndreas Kling
2021-12-28Kernel: Remove the KString::try_create(String::formatted(...)) patternDaniel Bertalan
2021-12-28Kernel/Net: Move Realtek network adapters code to a separate directoryLiav A
2021-12-28Kernel/Net: Move NE2000 network adapter code to a separate directoryLiav A
2021-12-28Kernel: Run clang-format on E1000NetworkAdapter.cppLiav A
2021-12-28Kernel/Net: Move Intel network adapters code to a separate directoryLiav A
2021-12-25Kernel: Remove unnecessary SocketHandle<T> classAndreas Kling
2021-12-22Kernel: Define and return the ARPHRD_* device type in SIOCGIFHWADDRIdan Horowitz
2021-12-18Kernel: Make File::stat() & friends return Error<struct stat>Andreas Kling
2021-12-18Kernel: Use copy_typed_from_user() in more places :^)Andreas Kling
2021-12-18Kernel: Fix getsockopt(SO_RCVTIMEO) returning wrong timeoutAndreas Kling
2021-12-16Kernel+LibC: Move errno definitions to Kernel/API/POSIXsin-ack