summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/transport
AgeCommit message (Expand)Author
2020-02-13Internal change.gVisor bot
2020-02-05Add notes to relevant tests.Adin Scannell
2020-02-05recv() on a closed TCP socket returns ENOTCONNEyal Soha
2020-02-04Add socket connection stress test.Ian Gudger
2020-01-31Fix method comment to match method name.Ian Gudger
2020-01-31Use multicast Ethernet address for multicast NDPGhanan Gowripalan
2020-01-30Fix for panic in endpoint.Close().Bhasker Hariharan
2020-01-29Add support for TCP_DEFER_ACCEPT.Bhasker Hariharan
2020-01-27Refactor to hide C from channel.Endpoint.Ting-Yu Wang
2020-01-27Standardize on tools directory.Adin Scannell
2020-01-21Add a new TCP stat for current open connections.Mithun Iyer
2020-01-21Merge pull request #1558 from kevinGC:iptables-write-input-dropgVisor bot
2020-01-17Filter out received packets with a local source IP address.Eyal Soha
2020-01-15Bugfix to terminate the protocol loop on StateError.Bhasker Hariharan
2020-01-14Changes TCP packet dispatch to use a pool of goroutines.Bhasker Hariharan
2020-01-14Implement {g,s}etsockopt(IP_RECVTOS) for UDP socketsTamir Duberstein
2020-01-13Fix test building.Kevin Krakauer
2020-01-13Allow dual stack sockets to operate on AF_INETTamir Duberstein
2020-01-10panic fix in retransmitTimerExpired.Bhasker Hariharan
2020-01-09New sync package.Ian Gudger
2020-01-09Merge pull request #1523 from majek:fix-1522-silly-window-rxgVisor bot
2020-01-09Change BindToDeviceOption to store NICIDEyal Soha
2020-01-08Introduce tcpip.SockOptBoolTamir Duberstein
2020-01-08Combine various Create*NIC methods into CreateNICWithOptions.Bert Muthalaly
2020-01-08Rename tcpip.SockOpt{,Int}Tamir Duberstein
2020-01-08Fix #1522 - implement silly window sydrome protection on rx sideMarek Majkowski
2020-01-07#1398 - send ACK when available buffer space gets larger than 1 MSSMarek Majkowski
2019-12-26Automated rollback of changelist 287029703gVisor bot
2019-12-24Enable IP_RECVTOS socket option for datagram socketsRyan Heacock
2019-12-18net/tcp: allow to call listen without bindAndrei Vagin
2019-12-17Internal change.gVisor bot
2019-12-11Add support for TCP_USER_TIMEOUT option.Bhasker Hariharan
2019-12-09Add UDP SO_REUSEADDR support to the port manager.Ian Gudger
2019-12-06Add TCP stats for connection close and keep-alive timeouts.Mithun Iyer
2019-12-06Fix flakiness in tcp_test.Bhasker Hariharan
2019-12-03net/udp: return a local route address as the bound-to addressAndrei Vagin
2019-12-03Fix panic due to early transition to Closed.Bhasker Hariharan
2019-11-28Test handling segments on completed but not yet accepted TCP connectionsGhanan Gowripalan
2019-11-25Set transport and network headers on outbound packets.Kevin Krakauer
2019-11-23Cleanup visibility.Adin Scannell
2019-11-22Internal change.Adin Scannell
2019-11-22Store SO_BINDTODEVICE state at bind.Ian Gudger
2019-11-22Use PacketBuffers with GSO.Kevin Krakauer
2019-11-22Add segment dequeue check while emptying segment queue.Mithun Iyer
2019-11-15Handle in-flight TCP segments when moving to CLOSE.Mithun Iyer
2019-11-14Use PacketBuffers for outgoing packets.Kevin Krakauer
2019-11-13Fix flaky behaviour during S/R.Bhasker Hariharan
2019-11-12Do not handle TCP packets that include a non-unicast IP addressGhanan Gowripalan
2019-11-12Add tests for SO_REUSEADDR and SO_REUSEPORT.Ian Gudger
2019-11-11Make `connect` on socket returned by `accept` correctly error out with EISCONNgVisor bot