diff options
author | Craig Tiller <ctiller@google.com> | 2016-10-26 06:42:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-26 06:42:02 -0700 |
commit | 4c2e3e7bb9f32d252a664bb83c5dea3ecda65a9b (patch) | |
tree | 4092671f1f1f66f201d9d81efe3fc9ac16f3b546 /src | |
parent | 79b75b9a43a8255b4e4409b50ba0e3ab4b007912 (diff) | |
parent | 7be1322b869243d02ec4983ff5c8027761c3ff61 (diff) |
Merge pull request #8377 from htuch/alpn
Introduce a grpc-exp ALPN protocol identifier.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/transport/chttp2/alpn/alpn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/alpn/alpn.c b/src/core/ext/transport/chttp2/alpn/alpn.c index 48b0217265..55710dc5ae 100644 --- a/src/core/ext/transport/chttp2/alpn/alpn.c +++ b/src/core/ext/transport/chttp2/alpn/alpn.c @@ -36,7 +36,7 @@ #include <grpc/support/useful.h> /* in order of preference */ -static const char *const supported_versions[] = {"h2"}; +static const char *const supported_versions[] = {"grpc-exp", "h2"}; int grpc_chttp2_is_alpn_version_supported(const char *version, size_t size) { size_t i; |