summaryrefslogtreecommitdiff
path: root/Kernel/Net/NetworkTask.cpp
AgeCommit message (Expand)Author
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
2020-02-08IPv4: Don't ACK empty TCP packetsAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2019-12-28Kernel: Fix code locked behind NETWORK_TASK_DEBUGConrad Pankoff
2019-12-28Kernel: Move incoming packet buffer off the NetworkTask stackConrad Pankoff
2019-12-22Net: Shrink the NetworkTask packet bufferAndreas Kling
2019-12-14TCP: Log packet metadata when receiving a TCP packet with no socketAndreas Kling
2019-12-14Net: Try to reuse incoming packet buffers to avoid allocation churnAndreas Kling
2019-12-01Kernel: Use a WaitQueue in NetworkTaskAndreas Kling
2019-11-04Kernel: Make File's can_read/can_write take a const FileDescription&Andreas Kling
2019-09-30ByteBuffer: Remove pointer() in favor of data()Andreas Kling
2019-09-19IPv4: Support overriding the default TTL (64)Andreas Kling
2019-09-08Kernel: Handle listening socket disappearing during incoming handshakeConrad Pankoff
2019-09-08Kernel: Put some network log messages behind debug flagsConrad Pankoff
2019-09-08Kernel: Send ACK/FIN in response to FIN packets on active connectionsConrad Pankoff
2019-09-08Kernel: Implement outgoing TCP retransmission and better ACK handlingConrad Pankoff
2019-09-08Kernel: Remember all ARP replies, even ones we didn't requestConrad Pankoff
2019-09-08Kernel: Don't mark incoming sockets as connected in NetworkTaskConrad Pankoff
2019-09-08Kernel: Hold socket back from accept() until it's fully set upConrad Pankoff
2019-09-08Kernel: Don't set sequence manually; send_tcp_packet will do itConrad Pankoff
2019-09-08Kernel: Don't increment ACK number without SYN, FIN, or dataConrad Pankoff
2019-08-29Kernel: Use a public member for NetworkAdapter on_receiveConrad Pankoff
2019-08-29Kernel: Add simple ARP routing layerConrad Pankoff
2019-08-29Kernel: Remove specific devices from network codeConrad Pankoff
2019-08-29Kernel: Ignore IPv6 packets; log unknown Ethernet payload typesConrad Pankoff
2019-08-21Kernel: Implement rtl8139 network interface driverConrad Pankoff
2019-08-10Kernel: Detect some outgoing TCP connection failuresConrad Pankoff
2019-08-10Kernel: Use a more detailed state machine for socket setupConrad Pankoff
2019-08-10Kernel: Move TCP state logging into TCPSocketConrad Pankoff