Skip to content
Merged
Show file tree
Hide file tree
Changes from 47 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
0e8c581
Add a new HappyEyeballsConnectionImpl
RyanTheOptimist Jun 22, 2021
2d0bcdc
Cleanup
RyanTheOptimist Jul 2, 2021
7d9f86b
WIP
RyanTheOptimist Jun 28, 2021
6ee6483
More WIP
RyanTheOptimist Jun 29, 2021
70d5cce
more wip
RyanTheOptimist Jul 1, 2021
608cde5
WIP
RyanTheOptimist Jul 9, 2021
3650ba1
unit tests pass
RyanTheOptimist Jul 11, 2021
d0e5230
More tests
RyanTheOptimist Jul 13, 2021
cf2a080
All unit tests
RyanTheOptimist Jul 13, 2021
ae4b120
Cleanup
RyanTheOptimist Jul 13, 2021
866cbd1
Cleanup
RyanTheOptimist Jul 13, 2021
fa98c2b
All but close()!
RyanTheOptimist Jul 13, 2021
f7c14b6
Close tests
RyanTheOptimist Jul 13, 2021
eca1009
setBufferLimits
RyanTheOptimist Jul 14, 2021
e6f2c19
setBufferLimits
RyanTheOptimist Jul 14, 2021
d038acb
Cleanup
RyanTheOptimist Jul 14, 2021
3b7a5b1
Working
RyanTheOptimist Jul 15, 2021
0ac5d91
Cleanup
RyanTheOptimist Jul 15, 2021
9f6ac88
Format
RyanTheOptimist Jul 15, 2021
9a5acf3
tidy
RyanTheOptimist Jul 15, 2021
afe4c6a
Comments from Renjie
RyanTheOptimist Jul 16, 2021
935ce6b
OptRef
RyanTheOptimist Jul 16, 2021
12cf110
Spelling
RyanTheOptimist Jul 16, 2021
7f84039
Comments from alyssa
RyanTheOptimist Jul 19, 2021
62f5d50
All methods now valid before connect finished
RyanTheOptimist Jul 20, 2021
3c988a9
Tests for all methods
RyanTheOptimist Jul 20, 2021
9a656e5
id
RyanTheOptimist Jul 20, 2021
0a94316
format
RyanTheOptimist Jul 20, 2021
0690023
Comments from Alyssa
RyanTheOptimist Jul 21, 2021
f07f63e
Format
RyanTheOptimist Jul 21, 2021
177ed7f
More good comments from Alyssa
RyanTheOptimist Jul 21, 2021
58a9411
Spelling
RyanTheOptimist Jul 21, 2021
299d059
Tidy
RyanTheOptimist Jul 21, 2021
0c5e4bb
Test cleanup
RyanTheOptimist Jul 21, 2021
002b949
Format
RyanTheOptimist Jul 21, 2021
ada720e
More test coverage
RyanTheOptimist Jul 22, 2021
11334e5
format
RyanTheOptimist Jul 23, 2021
db0ff53
All tests
RyanTheOptimist Jul 23, 2021
91cd11a
Two more
RyanTheOptimist Jul 23, 2021
f63ad48
Address comments from Alyssa
RyanTheOptimist Jul 26, 2021
016be67
More tweaks
RyanTheOptimist Jul 27, 2021
9dfc678
Correctly handle watermark signaling when moving the write data to th…
RyanTheOptimist Jul 27, 2021
ae43032
Format
RyanTheOptimist Jul 27, 2021
47e34e4
went -> when
RyanTheOptimist Jul 27, 2021
73cce3b
Better comments
RyanTheOptimist Jul 27, 2021
9b0ad9e
Grammar! Yarrrrrr!
RyanTheOptimist Jul 27, 2021
34458f3
Merge branch 'main' into HappyEyeballs
RyanTheOptimist Jul 28, 2021
88ba996
Fix comments from snow
RyanTheOptimist Jul 30, 2021
52aee63
Spelling
RyanTheOptimist Jul 30, 2021
811309a
Better location for removeConnectionCallbacks
RyanTheOptimist Aug 2, 2021
c061de4
Merge branch 'main' into HappyEyeballs
RyanTheOptimist Aug 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions source/common/network/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ envoy_cc_library(
],
)

envoy_cc_library(
name = "happy_eyeballs_connection_impl_lib",
srcs = ["happy_eyeballs_connection_impl.cc"],
hdrs = ["happy_eyeballs_connection_impl.h"],
deps = [
":connection_base_lib",
":connection_lib",
],
)

envoy_cc_library(
name = "apple_dns_lib",
srcs = select({
Expand Down
3 changes: 3 additions & 0 deletions source/common/network/connection_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ class TestPauseFilter;

namespace Network {

class HappyEyeballsConnectionImpl;

/**
* Utility functions for the connection implementation.
*/
Expand Down Expand Up @@ -168,6 +170,7 @@ class ConnectionImpl : public ConnectionImplBase, public TransportSocketCallback
bool bind_error_{false};

private:
friend class HappyEyeballsConnectionImpl;
friend class Envoy::RandomPauseFilter;
friend class Envoy::TestPauseFilter;

Expand Down
Loading