aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/handshake/client_ssl.c
Commit message (Collapse)AuthorAge
* Merge branch 'master' into cq_create_api_changesGravatar Sree Kuchibhotla2017-03-30
|\
| * Update include pathsGravatar Craig Tiller2017-03-28
| |
* | Updates C CoreGravatar Sree Kuchibhotla2017-03-22
| |
* | Prefix grpc_cq_polling_type enums with GRPC_CQ_Gravatar Sree Kuchibhotla2017-03-03
| |
* | Change Core to use the new completion_queue_create APIGravatar Sree Kuchibhotla2017-03-02
|/
* Merge remote-tracking branch 'upstream/v1.1.x' into merge_1.1.x_masterGravatar murgatroid992017-02-23
|\
| * Improve Node and libuv testing and test coverageGravatar murgatroid992017-02-17
| | | | | | | | Allow Node tests to run with or without UV, change default version to 7, add some portability tests. Also make some more core tests work with libuv
* | Expand wildcard IP addresses on servers.Gravatar Dan Born2017-02-09
| |
* | Replace timeout/scaling macros with functions.Gravatar Robbie Shade2017-01-31
|/
* Fixing msan issue in client_ssl.cGravatar Julien Boeuf2017-01-19
| | | | | | See this error (somehow triggered by a new version of boringssl): https://grpc-testing.appspot.com/job/gRPC_pull_requests_msan_c/1154/testReport/junit/(root)/c_linux_msan/bins_msan_handshake_client_GRPC_POLL_STRATEGY_poll_cv/ In the alpn callback, in_len is the size of the in buffer and not the number of alpn elements.
* Up retry count to try and counter flakinessGravatar Craig Tiller2016-11-28
|
* s/GPR_SLICE/GRPC_SLICE/gGravatar Craig Tiller2016-10-26
|
* Convert new filesGravatar Craig Tiller2016-10-26
|
* Fix handshake_client bind flakes and build issues.Gravatar Harvey Tuch2016-10-24
| | | | | | | | * Add port picking retries to handshake_client. * Track vsprojects for new tests. * Place tests in 'test' build target.
* Fix memory leak detected by ASAN and clang-format variance.Gravatar Harvey Tuch2016-10-24
|
* Introduce a grpc-exp ALPN protocol identifier.Gravatar Harvey Tuch2016-10-24
This patch introduces an additional ALPN protocol, grpc-exp, intended to take preference to h2 and indicate to the server that the connection contains only gRPC traffic. This allows servers and intermediate boxes to distinguish gRPC from other HTTP/2 traffic. The choice of grpc-exp as a protocol identifier indicates that this scheme is currently experimental and should not be relied upon. The protocol is not in the IANA TLS registry. This patch also introduces client/server handshake tests that validate the preferential treatment of grpc-exp in an end-to-end manner.