aboutgitcodebugslistschat
path: root/tcp.c
Commit message (Expand)AuthorAgeFilesLines
* tcp: Explicitly check option length field values in tcp_opt_get()Stefano Brivio2023-01-051-0/+4
* tcp: Pass union tcp_conn pointer to destroy and splice timer functionsStefano Brivio2022-11-251-8/+9
* tcp: Use dual stack sockets for port forwarding when possibleDavid Gibson2022-11-251-2/+12
* tcp: Consolidate tcp_sock_init[46]David Gibson2022-11-251-35/+15
* tcp: NAT IPv4-mapped IPv6 addresses like IPv4 addressesDavid Gibson2022-11-251-36/+31
* tcp: Remove v6 flag from tcp_epoll_refDavid Gibson2022-11-251-6/+4
* tcp: Fix small errors in tcp_seq_init() time handlingDavid Gibson2022-11-251-2/+2
* tcp: Have tcp_seq_init() take its parameters from struct tcp_connDavid Gibson2022-11-251-26/+10
* tcp: Unify initial sequence number calculation for IPv4 and IPv6David Gibson2022-11-251-28/+18
* tcp: Simplify tcp_hash_match() to take an inany_addrDavid Gibson2022-11-251-12/+4
* tcp: Take tcp_hash_insert() address from struct tcp_connDavid Gibson2022-11-251-12/+5
* tcp: Hash IPv4 and IPv4-mapped-IPv6 addresses the sameDavid Gibson2022-11-251-34/+18
* inany: Helper functions for handling addresses which could be IPv4 or IPv6David Gibson2022-11-251-45/+43
* tcp: Don't store hash bucket in connection structuresDavid Gibson2022-11-251-5/+24
* tcp: Remove splice from tcp_epoll_refDavid Gibson2022-11-251-26/+34
* tcp: Use the same sockets to listen for spliced and non-spliced connectionsDavid Gibson2022-11-251-96/+31
* tcp: Unify part of spliced and non-spliced conn_from_sock pathDavid Gibson2022-11-251-23/+45
* tcp: Separate helpers to create ns listening socketsDavid Gibson2022-11-251-44/+88
* tcp: Unify the IN_EPOLL flagDavid Gibson2022-11-251-5/+5
* tcp: Partially unify tcp_timer() and tcp_splice_timer()David Gibson2022-11-251-9/+9
* tcp: Unify tcp_defer_handler and tcp_splice_defer_handler()David Gibson2022-11-251-9/+11
* tcp: Unify spliced and non-spliced connection tablesDavid Gibson2022-11-251-20/+26
* tcp: Improved helpers to update connections after movingDavid Gibson2022-11-251-7/+9
* tcp: Add connection union typeDavid Gibson2022-11-251-0/+4
* tcp: Move connection state structures into a shared headerDavid Gibson2022-11-251-156/+50
* tcp: Better helpers for converting between connection pointer and indexDavid Gibson2022-11-251-38/+45
* tcp, udp: Don't initialise IPv6/IPv4 sockets if IPv4/IPv6 are not enabledStefano Brivio2022-11-101-2/+2
* tcp: Correct function comments for address typesDavid Gibson2022-11-041-6/+6
* Use typing to reduce chances of IPv4 endianness errorsDavid Gibson2022-11-041-25/+23
* Don't create 'tap' socket for ports that are bound to loopback onlyStefano Brivio2022-10-151-69/+114
* tcp, tcp_splice: Fix port remapping for inbound, spliced connectionsStefano Brivio2022-10-151-4/+3
* tcp, tcp_splice: Adjust comments to current meaning of inbound and outboundStefano Brivio2022-10-151-1/+1
* conf, tcp, udp: Allow specification of interface to bind toStefano Brivio2022-10-151-12/+15
* Move logging functions to a new file, log.cStefano Brivio2022-10-141-0/+1
* cppcheck: Suppress NULL pointer warning in tcp_sock_consume()David Gibson2022-09-291-0/+1
* cppcheck: Work around false positive NULL pointer dereference errorDavid Gibson2022-09-291-0/+1
* Fix widespread off-by-one error dealing with port numbersDavid Gibson2022-09-241-6/+6
* Treat port numbers as unsignedDavid Gibson2022-09-241-2/+2
* Don't use indirect remap functions for conf_ports()David Gibson2022-09-241-22/+0
* Consolidate port forwarding configuration into a common structureDavid Gibson2022-09-241-23/+19
* Improve types and names for port forwarding configurationDavid Gibson2022-09-241-6/+6
* Make substructures for IPv4 and IPv6 specific context informationDavid Gibson2022-07-301-17/+17
* Separate IPv4 and IPv6 configurationDavid Gibson2022-07-301-10/+10
* Allow different external interfaces for IPv4 and IPv6 connectivityDavid Gibson2022-07-301-1/+1
* tcp: Silence warning from gcc 11.3 with -OfastStefano Brivio2022-06-081-2/+8
* tcp: Work around gcc 12 bogus warning in tcp_rtt_dst_check()Stefano Brivio2022-05-201-0/+6
* conf, tcp, udp: Allow address specification for forwarded portsStefano Brivio2022-05-011-27/+36
* tcp: False "Out-of-bounds read" positive, CWE-125Stefano Brivio2022-04-071-1/+5
* tcp, tcp_splice: False "Negative array index read" positives, CWE-129Stefano Brivio2022-04-071-4/+8
* tcp: Dereference null return value, CWE-476Stefano Brivio2022-04-071-1/+1