Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Unix domain socket support #4846

Merged
merged 34 commits into from
Jun 8, 2023
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1d3f630
Add server-side Unix domain socket support
trustin May 19, 2023
41ee453
Address the comments from @ikhoon
trustin May 20, 2023
999eca6
Domain socket support on macOS
trustin May 20, 2023
d473068
Lint
trustin May 22, 2023
6ea5bee
Add `Endpoint.toSocketAddress()` and `DomainSocketAddress.asEndpoint()`
trustin May 22, 2023
20c6709
Make `Endpoint` cache `InetSocketAddress` more aggressively / Addres…
trustin May 23, 2023
a5aa7fe
Simplify SessionProtocolNegotiationCache key generation
trustin May 23, 2023
2ac54ad
Update core/src/main/java/com/linecorp/armeria/client/Endpoint.java
trustin May 25, 2023
4b4c98c
Update core/src/main/java/com/linecorp/armeria/client/HttpClientFacto…
trustin May 25, 2023
73f5d22
Address the comments from @jrhee17 / Normalize IP addresses wherever …
trustin May 25, 2023
a4b24f6
Merge branch 'main' into uds
trustin May 25, 2023
c604c9c
Merge branch 'main' into uds
trustin May 30, 2023
ff89907
Merge branch 'main' into uds
trustin May 30, 2023
4f1d5fb
Fix an exception in `DefaultEventLoopScheduler`
trustin May 30, 2023
3f5bc3e
Don't throw exception when setting port/IP on domain socket endpoint
trustin May 30, 2023
9c48404
Make a domain socket endpoint always has predefined IP address and port
trustin May 30, 2023
1d2b297
Fix Endpoint.authority()
trustin May 30, 2023
6733934
Fix a bug in Endpoint.withHost()
trustin May 30, 2023
92ebac1
Address the comment from @ikhoon / Add `Endpoint.{with,without}Defaul…
trustin May 30, 2023
54aee42
Update core/src/main/java/com/linecorp/armeria/client/Endpoint.java
ikhoon Jun 3, 2023
324d470
Merge branch 'main' into pr-4846-trustin-uds
ikhoon Jun 3, 2023
37cbac2
resolve conflicts
ikhoon Jun 3, 2023
ee13b32
Remove an unused import
ikhoon Jun 3, 2023
80e7329
Merge branch 'main' into uds
ikhoon Jun 7, 2023
a4bcd25
Merge branch 'main' into uds
trustin Jun 7, 2023
5939891
Update core/src/main/java/com/linecorp/armeria/client/Endpoint.java
trustin Jun 7, 2023
22f637d
Update core/src/main/java/com/linecorp/armeria/client/Endpoint.java
trustin Jun 7, 2023
0e7bc01
Update core/src/main/java/com/linecorp/armeria/client/Endpoint.java
trustin Jun 7, 2023
fb84c46
Add `unix:` prefix to the boss thread names
trustin Jun 7, 2023
7834c7d
Update core/src/main/java/com/linecorp/armeria/client/HttpChannelPool…
trustin Jun 7, 2023
ac354c1
Address the comment by @jrhee17
trustin Jun 7, 2023
1ffd2ec
Lint
trustin Jun 7, 2023
168e71c
Oops
trustin Jun 8, 2023
4de1794
Lint
trustin Jun 8, 2023
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
Prev Previous commit
Next Next commit
Update core/src/main/java/com/linecorp/armeria/client/Endpoint.java
Co-authored-by: Ikhun Um <ih.pert@gmail.com>
  • Loading branch information
trustin and ikhoon authored Jun 7, 2023
commit 0e7bc01af29d90b7fef20896591fcd7f36a6bff3
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ public Endpoint withDefaultPort(int defaultPort) {
* {@link SessionProtocol} if this endpoint does not have its port specified.
* {@code this} if this endpoint already has its port specified.
*/
@UnstableApi
public Endpoint withDefaultPort(SessionProtocol protocol) {
trustin marked this conversation as resolved.
Show resolved Hide resolved
requireNonNull(protocol, "protocol");
return withDefaultPort(protocol.defaultPort());
Expand Down