summaryrefslogtreecommitdiff
path: root/Kernel/Net
AgeCommit message (Expand)Author
2020-01-18Kernel: Pass correct permission flags when opening filesSergey Bugaev
2020-01-18RTL8139: Unbreak RealTek Ethernet driver after paging changesAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17Kernel: Move kernel above the 3GB virtual address markAndreas Kling
2020-01-14Kernel: Fixing E1000 MMIO accessLiav A
2020-01-12IPv4: Require "inet" promise for ioctl() on an IPv4SocketAndreas Kling
2020-01-11Kernel: Remove SmapDisabler in bind()Andreas Kling
2020-01-10Kernel: Fix kernel null deref on process crash during join_thread()Andreas Kling
2020-01-09Kernel: Don't apply process umask to the LocalSocket prebind modeAndreas Kling
2020-01-09Kernel: connect() should EISCONN on already-connected LocalSocketAndreas Kling
2020-01-08IPv4: Randomize the first TCP sequence numberAndreas Kling
2020-01-07Kernel: Make Socket::absolute_path() pure virtualAndreas Kling
2020-01-04Kernel: Make LocalSocket pre-bind GID be gid_t (#1012)erf
2020-01-03Kernel: Allow fchmod() and fchown() on pre-bind() local socketsAndreas Kling
2020-01-03Kernel: Add a more expressive API for getting random bytesAndreas Kling
2020-01-02Kernel: Create support for PCI ECAMLiav A
2019-12-28Kernel: Fix code locked behind NETWORK_TASK_DEBUGConrad Pankoff
2019-12-28Kernel: Route all loopback traffic through the loopback adapterConrad 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-14E1000: Disable interrupts while getting ready to wait on TX completionAndreas Kling
2019-12-14Kernel: Allow buffering up to 128 KB in an IPv4Socket before refusingAndreas Kling
2019-12-14Net: Try to reuse incoming packet buffers to avoid allocation churnAndreas Kling
2019-12-14E1000: Use a WaitQueue to sleep while waiting for a transmit IRQAndreas Kling
2019-12-14IPv4: Only buffer payload bytes for SOCK_STREAM socketsAndreas Kling
2019-12-09AK: SinglyLinkedList::size_slow() should return size_tAndreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-12-06Kernel: Add getsockopt(SO_PEERCRED) for local socketsAndreas Kling
2019-12-01Kernel+SystemMonitor: Log amounts of I/O per threadAndreas Kling
2019-12-01Kernel: Use a WaitQueue in NetworkTaskAndreas Kling
2019-11-28Kernel+ifconfig: Add an MTU value to NetworkAdapterAndreas Kling
2019-11-23IPv4: Protect the list of unacked TCP packets with a lockAndreas Kling
2019-11-18IPv4: Disconnected non-blocking sockets were not signalling EOFAndreas Kling
2019-11-09Kernel+SystemMonitor: Publish can_read/write state for open filesAndreas Kling
2019-11-04Kernel: Make File's can_read/can_write take a const FileDescription&Andreas Kling
2019-11-04IPv4: Non-blocking IPv4 sockets should return -EAGAIN in recvfrom()Andreas Kling
2019-10-18Net: Put a bunch of socket debug logging behind FOO_DEBUGAndreas Kling
2019-10-18Revert "Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ing"Andreas Kling
2019-10-18Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ingAndreas Kling
2019-10-17Kernel: Minor cleanup in TCPSocket::send_tcp_packet()Andreas Kling
2019-10-08Kernel: Delay moving accepted sockets to SetupState::Completed a bitAndreas Kling
2019-10-08Kernel: Don't put LocalSocket in SetupState::Completed in bind()Andreas Kling
2019-10-02Kernel: Add SIOCGIFHWADDR ioctl to get the MAC address of an adapterAndreas Kling
2019-09-30ByteBuffer: Remove pointer() in favor of data()Andreas Kling
2019-09-23IPv4: Implement socket ioctls SIOCGIFADDR and SIOCSIFADDRAndreas Kling
2019-09-22LocalSocket: Teach recvfrom() how to block if needed, and simplify itAndreas Kling
2019-09-19IPv4: Support overriding the default TTL (64)Andreas Kling
2019-09-16Kernel: Move kmalloc() into a Kernel/Heap/ directoryAndreas Kling
2019-09-09RTL8139: Fix bogus (but harmless) TX buffer index in send_raw()Andreas Kling