aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-11-08 09:46:41 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2016-11-08 09:46:41 -0800
commitea6689dbdfcb5ff9b599e0e54afa8c7ea40e3718 (patch)
tree69071f41bb4e7bcce127cf376769f3261d3652e8 /include
parenta9cf87d9e456621297afccdcfc9072df7630840c (diff)
Added INIT state to grpc_connectivity_state
Diffstat (limited to 'include')
-rw-r--r--include/grpc/impl/codegen/connectivity_state.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/grpc/impl/codegen/connectivity_state.h b/include/grpc/impl/codegen/connectivity_state.h
index 71865d8a56..c6d1a33405 100644
--- a/include/grpc/impl/codegen/connectivity_state.h
+++ b/include/grpc/impl/codegen/connectivity_state.h
@@ -40,6 +40,8 @@ extern "C" {
/** Connectivity state of a channel. */
typedef enum {
+ /** channel has just been initialized */
+ GRPC_CHANNEL_INIT = -1,
/** channel is idle */
GRPC_CHANNEL_IDLE,
/** channel is connecting */