summaryrefslogtreecommitdiff
path: root/Kernel/Net/NetworkTask.cpp
AgeCommit message (Expand)Author
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
2019-08-09Kernel: Clean up and sanitize incoming packet handling a bit moreAndreas Kling
2019-08-09Kernel: Actually, let's not hang() on bad incoming packetsAndreas Kling
2019-08-09Kernel: Do some basic sanity checking on IPv4 packet headersAndreas Kling
2019-08-09Kernel: Improve some network-related log messagesConrad Pankoff
2019-08-09Kernel: Implement TCP listening sockets and incoming connectionsConrad Pankoff
2019-08-09Kernel: Use WeakPtr<NetworkAdapter> instead of NetworkAdapter* in net codeConrad Pankoff
2019-08-08Kernel: Record network statistics and expose as JSONConrad Pankoff
2019-08-08Kernel: Prevent RST spam when we get an unexpected packetConrad Pankoff
2019-08-06Kernel: Refactor TCP/IP stackConrad Pankoff
2019-08-05Kernel: Make KBuffer a value-type wrapper around a KBufferImplAndreas Kling
2019-08-05IPv4: Remove an unnecessary copy of each outgoing IPv4 payloadAndreas Kling
2019-08-04Net: Use KBuffers for network adapter packet queuesAndreas Kling
2019-08-04IPv4: Use KBuffer instead of ByteBuffer for socket receive queuesAndreas Kling
2019-08-04Kernel: Put IPv4 and TCP related debug spam behind flagsAndreas Kling
2019-07-20Thread: Return a result from block() indicating why the block terminatedRobin Burchell
2019-07-19Kernel: Restore state strings for block statesRobin Burchell
2019-07-14Kernel: Add Thread::block_until(Condition).Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling