summaryrefslogtreecommitdiff
path: root/Kernel/Net/NetworkTask.cpp
AgeCommit message (Expand)Author
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-06-05Kernel: Unify Kernel task names for consistencyBrian Gianforcaro
2022-05-31Kernel: Ignore interfaces without an IP address when updating ARPbrapru
2022-05-01Kernel: Stop exposing gateway fieldMaciej
2022-04-28Kernel: Generalize the UpdateArp table to UpdateTablebrapru
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-18Kernel: When receiving unexpected TCP flags, print the flagsAndreas Kling
2022-02-07Kernel: Fix bug in TCP state handling in SynSentJamie Mansfield
2022-02-06Kernel: Fix bugs in TCP state handling in FinWait1 & FinWait2Andreas Kling
2022-02-03Kernel: Ignore allocation failures when trying to retransmit packetsIdan Horowitz
2022-01-05Kernel: Use MUST + Vector::try_append instead of Vector::appendBrian Gianforcaro
2021-12-05Kernel: Mark kernel smart-pointer classes as [[nodiscard]]Sam Atkins
2021-10-28Kernel+LibC: Add support for the IPv4 TOS field via the IP_TOS sockoptIdan Horowitz
2021-10-08Kernel: Fix -Wunreachable-code warnings from clangNico Weber
2021-09-07Kernel: Make TCPSocket client construction use KResultOr and TRY()Andreas Kling
2021-09-07Kernel: Store process names as KStringAndreas Kling
2021-09-07Kernel: Avoid string creation for simple string comparisonBrian Gianforcaro
2021-09-06Kernel: Make kernel region allocators return KResultOr<NOP<Region>>Andreas Kling
2021-08-29Kernel: Rename Socket::lock() => Socket::mutex()Andreas Kling
2021-08-22Kernel: Rename ProtectedValue<T> => MutexProtected<T>Andreas Kling
2021-08-18Kernel: Fix a crash introduced by my TCP RST fixGunnar Beutner
2021-08-18Kernel: Don't respond to TCP RST packetsGunnar Beutner
2021-08-15Kernel: Convert TCP retransmit queue from HashTable to IntrusiveListAndreas Kling
2021-08-15Kernel: Convert IPv4 socket list from HashTable to IntrusiveListAndreas Kling
2021-08-14Kernel: Stop allowing implicit conversion from KResult to intAndreas Kling
2021-08-07Kernel: Migrate TCP socket tables locking to ProtectedValueJean-Baptiste Boric
2021-08-07Kernel: Migrate IPv4 socket table locking to ProtectedValueJean-Baptiste Boric
2021-08-07Kernel: Move Mutex into Locking/Jean-Baptiste Boric
2021-08-06Kernel: Add convenience values to the Memory::Region::Access enumAndreas Kling
2021-08-06Kernel: Move Kernel/Memory/ code into Kernel::Memory namespaceAndreas Kling
2021-08-03Kernel: Handle OOM when allocating Packet KBuffersBrian Gianforcaro
2021-08-03Kernel: Use normal initialization for TCPPacket instead of memsetBrian Gianforcaro
2021-08-02Kernel: Send RST/ACK if no socket is availablebrapru
2021-08-02Kernel: Do not send delayed ack in response to RST/ACKbrapru
2021-08-02Kernel: Convert NetworkTask to east-const stylebrapru
2021-07-25Utilities: Support static assignment of the ARP tablebrapru
2021-07-25Kernel: Add update option to remove an entry from the ARP tablebrapru
2021-07-18Kernel: Rename Locker => MutexLockerAndreas Kling
2021-07-17Kernel: Rename Lock to MutexAndreas Kling
2021-06-09Kernel: Introduce the NetworkingManagement singletonLiav A
2021-06-04Kernel: Make sure we increment the TX counterGunnar Beutner
2021-06-03Kernel: Make sure outgoing ICMP packets have the correct checksumGunnar Beutner
2021-05-28Kernel: Ignore duplicate SYN packetsGunnar Beutner
2021-05-26Kernel: Avoid allocations when sending IP packetsGunnar Beutner
2021-05-15Kernel: Log unexpected TCP packet flags in NetworkTask handle_tcp()Brian Gianforcaro
2021-05-14Kernel: Try to retransmit lost TCP packetsGunnar Beutner
2021-05-14Kernel: Wake up NetworkTask every 500 millisecondsGunnar Beutner
2021-05-14Kernel: Don't use delayed ACKs when establishing the connectionGunnar Beutner
2021-05-12Kernel: Outbound packets should use the source address from the socketGunnar Beutner
2021-05-12Kernel: Coalesce TCP ACKsGunnar Beutner