diff options
author | David Garcia Quintas <dgq@google.com> | 2016-05-12 17:18:54 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-05-12 17:18:54 -0700 |
commit | 5028334df3a8b6c389a0d959519b3b1a59484ab3 (patch) | |
tree | 5fe8d359f804356228fc660f9e45bfb07548beee /include | |
parent | 11b520afc68042a60f1978c632d545b4f7d0686f (diff) |
Further renamings (compression channel arg keys)
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc/impl/codegen/compression_types.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/grpc/impl/codegen/compression_types.h b/include/grpc/impl/codegen/compression_types.h index 1d500c971c..8d2ec3b9d7 100644 --- a/include/grpc/impl/codegen/compression_types.h +++ b/include/grpc/impl/codegen/compression_types.h @@ -41,10 +41,11 @@ extern "C" { #endif /** To be used in channel arguments */ -#define GRPC_COMPRESSION_CHANNEL_DEFAULT_ALGORITHM "grpc.compression_algorithm" -#define GRPC_COMPRESSION_CHANNEL_DEFAULT_LEVEL "grpc.compression_level" +#define GRPC_COMPRESSION_CHANNEL_DEFAULT_ALGORITHM \ + "grpc.default_compression_algorithm" +#define GRPC_COMPRESSION_CHANNEL_DEFAULT_LEVEL "grpc.default_compression_level" #define GRPC_COMPRESSION_CHANNEL_ENABLED_ALGORITHMS_BITSET \ - "grpc.compression_algorithm_state" + "grpc.compression_enabled_algorithms_bitset" /* The various compression algorithms supported by gRPC */ typedef enum { |