aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/client_channel/http_connect_handshaker.h
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-01-09 09:43:47 -0800
committerGravatar GitHub <noreply@github.com>2017-01-09 09:43:47 -0800
commit6cf58c81731343e0ffb134febd3e576425399e5e (patch)
tree625d89baf64b639a4c8c91c76a9cfdc4e58ce1ff /src/core/ext/client_channel/http_connect_handshaker.h
parent38b95b3a1515e31c83e23dd211e74ff9a7970c39 (diff)
parent1f0f23cc5aa8f131b7ef3aae982cffb88d1f19fa (diff)
Merge pull request #9129 from markdroth/handshaker_plugin
Handshaker plugin mechanism
Diffstat (limited to 'src/core/ext/client_channel/http_connect_handshaker.h')
-rw-r--r--src/core/ext/client_channel/http_connect_handshaker.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/ext/client_channel/http_connect_handshaker.h b/src/core/ext/client_channel/http_connect_handshaker.h
index ea293852e6..56485f1373 100644
--- a/src/core/ext/client_channel/http_connect_handshaker.h
+++ b/src/core/ext/client_channel/http_connect_handshaker.h
@@ -36,11 +36,14 @@
#include "src/core/lib/channel/handshaker.h"
-/// Does NOT take ownership of \a proxy_server.
+/// Creates a new HTTP CONNECT handshaker.
grpc_handshaker* grpc_http_connect_handshaker_create(const char* proxy_server);
/// Returns the name of the proxy to use, or NULL if no proxy is configured.
/// Caller takes ownership of result.
char* grpc_get_http_proxy_server();
+/// Registers handshaker factory.
+void grpc_http_connect_register_handshaker_factory();
+
#endif /* GRPC_CORE_EXT_CLIENT_CHANNEL_HTTP_CONNECT_HANDSHAKER_H */