summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/transport/tcp
AgeCommit message (Expand)Author
2020-04-14Reduce flakiness in tcp_test.Bhasker Hariharan
2020-04-09Merge pull request #2253 from amscanne:nogogVisor bot
2020-04-09Convert int and bool socket options to use GetSockOptInt and GetSockOptBoolAndrei Vagin
2020-04-08Remove lostcancel warnings.Adin Scannell
2020-04-08Fix all printf formatting errors.Adin Scannell
2020-04-03Refactor software GSO code.Bhasker Hariharan
2020-03-26Support owner matching for iptables.Nayana Bidari
2020-03-25Fix data-race in endpoint.ReadinessBhasker Hariharan
2020-03-24Add support for setting TCP segment hash.Bhasker Hariharan
2020-03-24Move tcpip.PacketBuffer and IPTables to stack package.Bhasker Hariharan
2020-03-20Remove unused variable `sndNxtList`.Ting-Yu Wang
2020-03-19Remove redundant dep in BUILDJay Zhuang
2020-03-19Address comments on workMu removal change.Bhasker Hariharan
2020-03-19Remove workMu from tcpip.Endpoint.Bhasker Hariharan
2020-03-18Store segment transmit count.Ian Gudger
2020-03-11Implement heap.Interface on pointer receiverTamir Duberstein
2020-03-11Fix race condition (*tcp.endpoint).CloseTamir Duberstein
2020-03-11Fix memory leak in danglingEndpoints.Bhasker Hariharan
2020-03-06shutdown(s, SHUT_WR) in TIME-WAIT returns ENOTCONNEyal Soha
2020-03-05Use a pool of arrays to avoid slice headers from escaping in TCP options pool.Ian Gudger
2020-03-03Avoid memory leaksTamir Duberstein
2020-03-03Fix datarace on TransportEndpointInfo.ID and clean up semantics.Ian Gudger
2020-03-02Fix data-race when reading/writing e.amss.Bhasker Hariharan
2020-02-27Fix a race in TCP endpoint teardown and teardown the stack in tcp_test.Ian Gudger
2020-02-25Deflake TestCurrentConnectedIncrement.Bhasker Hariharan
2020-02-24Add support for tearing down protocol dispatchers and TIME_WAIT endpoints.Ian Gudger
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-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-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-18net/tcp: allow to call listen without bindAndrei Vagin
2019-12-17Internal change.gVisor bot