aboutgitcodebugslistschat
path: root/tcp.c
Commit message (Expand)AuthorAgeFilesLines
* tcp: Update tap specific header too in tcp_fill_headers[46]()David Gibson2024-05-021-14/+14
* iov: Helper macro to construct iovs covering existing variables or fieldsDavid Gibson2024-05-021-15/+9
* tap, tcp: (Re-)abstract TAP specific header handlingDavid Gibson2024-05-021-25/+15
* tcp: Simplify packet length calculation when preparing headersDavid Gibson2024-05-021-16/+10
* treewide: Standardise variable names for various packet lengthsDavid Gibson2024-05-021-51/+51
* checksum: Make csum_ip4_header() take a host endian lengthDavid Gibson2024-05-021-1/+1
* tcp: Replace TCP buffer structure by an iovec arrayLaurent Vivier2024-04-191-268/+261
* tcp: Unconditionally force ACK for all !SYN, !RST packets2024_03_26.4988e2bDavid Gibson2024-03-261-5/+1
* tcp: Never automatically add the ACK flag to RST packetsDavid Gibson2024-03-261-1/+1
* tcp: Rearrange logic for setting ACK flag in tcp_send_flag()David Gibson2024-03-261-5/+4
* tcp: Split handling of DUP_ACK from ACKDavid Gibson2024-03-261-2/+2
* tap: Rename tap_iov_{base,len}David Gibson2024-03-141-6/+6
* tap: Extend tap_send_frames() to allow multi-buffer framesDavid Gibson2024-03-141-4/+4
* tcp: Introduce tcp_fill_headers4()/tcp_fill_headers6()Laurent Vivier2024-03-061-50/+106
* tap: make tap_update_mac() genericLaurent Vivier2024-03-061-4/+4
* checksum: introduce functions to compute the header part checksum for TCP/UDPLaurent Vivier2024-03-061-27/+23
* checksum: use csum_ip4_header() in udp.c and tcp.cLaurent Vivier2024-03-061-21/+3
* util: move IP stuff from util.[ch] to ip.[ch]Laurent Vivier2024-03-061-0/+1
* fwd: Rename port_fwd.[ch] and their contentsDavid Gibson2024-02-291-2/+2
* tcp: Validate TCP endpoint addressesDavid Gibson2024-02-291-7/+67
* tcp, tcp_splice: Parse listening socket epoll ref in tcp_listen_handler()David Gibson2024-02-291-6/+6
* tcp_splice: Improve logic deciding when to spliceDavid Gibson2024-02-291-2/+1
* flow: Clarify flow entry life cycle, introduce uniform loggingDavid Gibson2024-02-291-8/+7
* tcp, udp: Don't precompute port remappings in epoll referencesDavid Gibson2024-02-291-4/+4
* inany: Introduce union sockaddr_inanyDavid Gibson2024-02-291-6/+5
* inany: Provide more conveniently typed constants for special addressesDavid Gibson2024-02-291-2/+2
* tcp: Don't store errnos in socket poolDavid Gibson2024-02-271-2/+6
* tcp, tcp_splice: Helpers for getting sockets from the poolsDavid Gibson2024-02-271-5/+29
* tcp, tcp_splice: Issue warnings if unable to refill socket poolDavid Gibson2024-02-271-6/+18
* tcp: Stop on first error when refilling socket poolsDavid Gibson2024-02-271-1/+2
* tcp: Don't stop refilling socket pool if we find a filled entryDavid Gibson2024-02-271-1/+1
* treewide: Use sa_family_t for address family variablesDavid Gibson2024-02-271-6/+6
* tcp: Fix subtle bug in fast re-transmit pathDavid Gibson2024-02-111-1/+0
* flow: Avoid moving flow entries to compact tableDavid Gibson2024-01-221-23/+0
* flow: Enforce that freeing of closed flows must happen in deferred handlersDavid Gibson2024-01-221-4/+5
* flow: Abstract allocation of new flows with helper functionDavid Gibson2024-01-221-11/+18
* flow: Move flow_count from context structure to a globalDavid Gibson2024-01-221-5/+5
* tcp, tcp_splice: Avoid double layered dispatch for connected TCP socketsDavid Gibson2024-01-221-28/+8
* flow, tcp: Add handling for per-flow timersDavid Gibson2024-01-221-6/+0
* flow, tcp: Add flow-centric dispatch for deferred flow handlingDavid Gibson2024-01-221-17/+2
* tcp, tcp_splice: Move per-type cleanup logic into per-type helpersDavid Gibson2024-01-221-6/+7
* tcp, tcp_splice: Remove redundant handling from tcp_timer()David Gibson2024-01-221-13/+2
* treewide: Standardise on 'now' for current timestamp variablesDavid Gibson2024-01-221-3/+3
* flow: Make flow_table.h #include the protocol specific headers it needsDavid Gibson2024-01-221-1/+0
* treewide: Make a bunch of pointer variables pointers to constDavid Gibson2024-01-161-4/+4
* tcp: make tcp_sock_set_bufsize() static (again)Laurent Vivier2023-12-271-1/+1
* treewide: Use IN4ADDR_LOOPBACK_INIT more widelyDavid Gibson2023-12-271-1/+1
* tcp: Fix address type for tcp_sock_init_af()David Gibson2023-12-271-1/+1
* tcp: Don't account for hash table size in tcp_hash()David Gibson2023-12-271-13/+10
* tcp: Implement hash table with indices rather than pointersDavid Gibson2023-12-271-11/+22