aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-10-26 06:42:02 -0700
committerGravatar GitHub <noreply@github.com>2016-10-26 06:42:02 -0700
commit4c2e3e7bb9f32d252a664bb83c5dea3ecda65a9b (patch)
tree4092671f1f1f66f201d9d81efe3fc9ac16f3b546 /src/core/ext
parent79b75b9a43a8255b4e4409b50ba0e3ab4b007912 (diff)
parent7be1322b869243d02ec4983ff5c8027761c3ff61 (diff)
Merge pull request #8377 from htuch/alpn
Introduce a grpc-exp ALPN protocol identifier.
Diffstat (limited to 'src/core/ext')
-rw-r--r--src/core/ext/transport/chttp2/alpn/alpn.c2
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;