summaryrefslogtreecommitdiff
path: root/Kernel/Net/NetworkTask.cpp
AgeCommit message (Expand)Author
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
2021-05-12Kernel: Trigger TCP fast retransmission when we encounter lost packetsGunnar Beutner
2021-05-12Kernel: Don't process TCP packets out of orderGunnar Beutner
2021-05-12Kernel: Avoid allocating KBuffers for TCP packetsGunnar Beutner
2021-05-05Kernel: Implement IP multicast supportSergey Bugaev
2021-04-30Kernel: Tear down connections when we receive an RST packetGunnar Beutner
2021-04-30Kernel: Record MAC addresses for incoming IPv4 packetsGunnar Beutner
2021-04-30Kernel: Avoid deadlock when trying to send packets from the NetworkTaskGunnar Beutner
2021-04-27Kernel: Silence a few more network dbgln()sGunnar Beutner
2021-04-25Kernel: Remove the now defunct `LOCKER(..)` macro.Brian Gianforcaro
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-03Kernel: NetworkTask: Remove 10.0.2.x as default IP for NIC interfacesBrendan Coles
2021-03-12Kernel: Convert klog() => AK::Format in NetworkTaskAndreas Kling
2021-03-02Kernel: Make sockets use AK::TimeBen Wiederhake
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-15Kernel: Add WaitQueue::wait_forever and it use it for all infinite waits.Brian Gianforcaro
2021-02-12Kernel: Hold less locks when receiving ICMP packetsSergey Bugaev
2021-01-31Kernel: Use KResult a bit more in the IPv4 networking codeAndreas Kling
2021-01-26Meta: Split debug defines into multiple headers.asynts
2021-01-25Everywhere: Hook up remaining debug macros to Debug.h.asynts
2021-01-25Everywhere: Remove unnecessary debug comments.asynts
2021-01-12AK: Simplify constructors and conversions from nullptr_tLenny Maiorani
2021-01-01Kernel: Merge PurgeableVMObject into AnonymousVMObjectTom
2020-12-25AK: Remove custom %w format string specifierAndreas Kling
2020-12-25AK: Remove custom %b format string specifierAndreas Kling
2020-12-21Everywhere: Switch from (void) to [[maybe_unused]] (#4473)Lenny Maiorani
2020-12-12Kernel: Fix some issues related to fixes and block conditionsTom
2020-11-30Kernel: Move block condition evaluation out of the SchedulerTom
2020-11-30Kernel: Allow passing a thread argument for new kernel threadsTom
2020-10-21IPv4: Take the socket lock more (fixes TCP connection to localhost)Andreas Kling
2020-10-20ICMP: Check that incoming ICMP echo requests are large enoughAndreas Kling
2020-09-27Kernel: Make Thread refcountedTom
2020-09-17Kernel: Plumb packet receive timestamp from NetworkAdapter to Socket::recvfromNico Weber
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-08-16AK: Rename KB, MB, GB to KiB, MiB, GiBNico Weber
2020-08-15AK: Rename span() to bytes() when appropriate.asynts
2020-07-28Kernel: Use AK::Span a bunch in the network adapter codeAndreas Kling
2020-07-06Kernel: Require a reason to be passed to Thread::wait_onTom
2020-07-01Kernel: Turn Thread::current and Process::current into functionsTom
2020-04-09Kernel: Move NetworkTask startup into NetworkTask::spawn()Andreas Kling
2020-04-04Kernel: Do not reject broadcast UDP packets right awayAnotherTest
2020-03-02Kernel: Use klog() instead of kprintf()Liav A
2020-02-17Kernel: Replace "current" with Thread::current and Process::currentAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-08IPv4: Basic implementation of TCP socket shutdownAndreas Kling