diff options
author | Sree Kuchibhotla <sreek@google.com> | 2016-10-13 11:18:09 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2016-10-13 11:18:09 -0700 |
commit | e4996d6c43ee86fed4c212d5c105d2d00f824baf (patch) | |
tree | 279f325866ba1c1732f04e386d828a2ae88cf56a /src/cpp | |
parent | 5f806d321afee630f98796429856c57584ca66ea (diff) | |
parent | 770137b01ded519a78126031cc00b2afc377bb39 (diff) |
Merge branch 'master' into rpc_mgr
Diffstat (limited to 'src/cpp')
-rw-r--r-- | src/cpp/README.md | 4 | ||||
-rw-r--r-- | src/cpp/client/client_context.cc | 3 | ||||
-rw-r--r-- | src/cpp/common/channel_filter.h | 6 |
3 files changed, 3 insertions, 10 deletions
diff --git a/src/cpp/README.md b/src/cpp/README.md index 8c0f85e5ff..d9b521317a 100644 --- a/src/cpp/README.md +++ b/src/cpp/README.md @@ -3,10 +3,6 @@ This directory contains source code for C++ implementation of gRPC. -#Status - -Beta - #Pre-requisites ##Linux diff --git a/src/cpp/client/client_context.cc b/src/cpp/client/client_context.cc index 5b6aaa777b..b6008f47b1 100644 --- a/src/cpp/client/client_context.cc +++ b/src/cpp/client/client_context.cc @@ -59,7 +59,8 @@ static ClientContext::GlobalCallbacks* g_client_callbacks = ClientContext::ClientContext() : initial_metadata_received_(false), - fail_fast_(true), + wait_for_ready_(false), + wait_for_ready_explicitly_set_(false), idempotent_(false), cacheable_(false), call_(nullptr), diff --git a/src/cpp/common/channel_filter.h b/src/cpp/common/channel_filter.h index 6f5af3dec3..ae32e02f69 100644 --- a/src/cpp/common/channel_filter.h +++ b/src/cpp/common/channel_filter.h @@ -42,6 +42,7 @@ #include <vector> #include "src/core/lib/channel/channel_stack.h" +#include "src/core/lib/security/context/security_context.h" #include "src/core/lib/surface/channel_init.h" #include "src/core/lib/transport/metadata_batch.h" @@ -54,11 +55,6 @@ /// "name-of-filter", GRPC_SERVER_CHANNEL, INT_MAX, nullptr); /// \endcode -/// Forward declaration to avoid including the file -/// "src/core/lib/security/context/security_context.h" -struct grpc_client_security_context; -struct grpc_server_security_context; - namespace grpc { /// A C++ wrapper for the \c grpc_metadata_batch struct. |