We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3327730 commit e1972b4Copy full SHA for e1972b4
service-config/src/main/java/com/palantir/conjure/java/api/config/service/ProxyConfiguration.java
@@ -136,6 +136,10 @@ public static ProxyConfiguration mesh(String hostAndPort) {
136
return builder().type(Type.MESH).hostAndPort(hostAndPort).build();
137
}
138
139
+ public static ProxyConfiguration socks(String hostAndPort) {
140
+ return builder().type(Type.SOCKS).hostAndPort(hostAndPort).build();
141
+ }
142
+
143
public static Builder builder() {
144
return new Builder();
145
0 commit comments