diff options
author | Yash Tibrewal <yashkt@google.com> | 2018-07-11 17:11:19 -0700 |
---|---|---|
committer | Yash Tibrewal <yashkt@google.com> | 2018-07-11 17:11:19 -0700 |
commit | fa0373c599663ceafd8532ad4c33b7ead56ff9ea (patch) | |
tree | 581f6b7145eea5456570dce08568d89a3a4afd14 | |
parent | 6e2d9f40e61b24db1b6df081c31a22f2dc5ac9c9 (diff) |
GRPC_ARG_HTTP2_MIN_RECV_PING_INTERVAL_WITHOUT_DATA_MS only makes sense for the server
-rw-r--r-- | include/grpc/impl/codegen/grpc_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/grpc/impl/codegen/grpc_types.h b/include/grpc/impl/codegen/grpc_types.h index c32e99ed4c..5fd080c48b 100644 --- a/include/grpc/impl/codegen/grpc_types.h +++ b/include/grpc/impl/codegen/grpc_types.h @@ -196,8 +196,8 @@ typedef struct { data frame, Int valued, milliseconds. */ #define GRPC_ARG_HTTP2_MIN_SENT_PING_INTERVAL_WITHOUT_DATA_MS \ "grpc.http2.min_time_between_pings_ms" -/** Minimum allowed time between receiving successive ping frames without - sending any data frame. Int valued, milliseconds */ +/** Minimum allowed time between a server receiving successive ping frames + without sending any data frame. Int valued, milliseconds */ #define GRPC_ARG_HTTP2_MIN_RECV_PING_INTERVAL_WITHOUT_DATA_MS \ "grpc.http2.min_ping_interval_without_data_ms" /** Channel arg to override the http2 :scheme header */ |