Add EnableWorkaround API to enable server workarounds
diff --git a/src/cpp/server/server_builder.cc b/src/cpp/server/server_builder.cc
index 2ead048..67a7846 100644
--- a/src/cpp/server/server_builder.cc
+++ b/src/cpp/server/server_builder.cc
@@ -39,6 +39,7 @@
#include <grpc/support/cpu.h>
#include <grpc/support/log.h>
#include <grpc/support/useful.h>
+#include <grpc/support/workaround_list.h>
#include "src/cpp/server/thread_pool_interface.h"
@@ -198,6 +199,10 @@
args.SetInt(GRPC_ARG_MAX_SEND_MESSAGE_LENGTH, max_send_message_size_);
}
+ for (auto workaround : enabled_workarounds_) {
+ args.SetInt(workaround, 1);
+ }
+
args.SetInt(GRPC_COMPRESSION_CHANNEL_ENABLED_ALGORITHMS_BITSET,
enabled_compression_algorithms_bitset_);
if (maybe_default_compression_level_.is_set) {
@@ -358,4 +363,14 @@
(*g_plugin_factory_list).push_back(CreatePlugin);
}
+void ServerBuilder::EnableWorkaround(uint32_t id) {
+ switch (id) {
+ case GRPC_WORKAROUND_ID_CRONET_COMPRESSION:
+ enabled_workarounds_.push_back(GRPC_ARG_WORKAROUND_CRONET_COMPRESSION);
+ break;
+ default:
+ gpr_log(GPR_ERROR, "Workaround %u is not exist or obsolete.", id);
+ }
+}
+
} // namespace grpc