From 0d47192afa553c92c382cfa3c673f2233ff65793 Mon Sep 17 00:00:00 2001 From: Julien Boeuf Date: Sun, 30 Aug 2015 22:18:50 -0700 Subject: [PATCH] Fixing headers and paths after merge with upstream. --- BUILD | 16 +++++----- Makefile | 16 +++++----- build.json | 8 ++--- include/grpc++/server.h | 2 +- test/cpp/end2end/async_end2end_test.cc | 2 -- test/cpp/end2end/client_crash_test.cc | 2 -- test/cpp/end2end/client_crash_test_server.cc | 1 - test/cpp/end2end/generic_end2end_test.cc | 2 -- test/cpp/end2end/mock_test.cc | 2 -- test/cpp/end2end/server_crash_test.cc | 2 -- test/cpp/end2end/server_crash_test_client.cc | 1 - test/cpp/end2end/shutdown_test.cc | 2 -- test/cpp/end2end/thread_stress_test.cc | 2 -- test/cpp/end2end/zookeeper_test.cc | 2 -- test/cpp/interop/reconnect_interop_server.cc | 1 - test/cpp/util/cli_call_test.cc | 2 -- tools/doxygen/Doxyfile.c++ | 10 +++--- tools/doxygen/Doxyfile.c++.internal | 10 +++--- tools/run_tests/sources_and_headers.json | 32 +++++++++---------- vsprojects/grpc++/grpc++.vcxproj | 8 ++--- vsprojects/grpc++/grpc++.vcxproj.filters | 27 +++++++++------- .../grpc++_unsecure/grpc++_unsecure.vcxproj | 8 ++--- .../grpc++_unsecure.vcxproj.filters | 27 +++++++++------- 23 files changed, 85 insertions(+), 100 deletions(-) diff --git a/BUILD b/BUILD index 318959333e1..72a496dce1a 100644 --- a/BUILD +++ b/BUILD @@ -723,12 +723,10 @@ cc_library( "src/cpp/util/time.cc", ], hdrs = [ - "include/grpc++/auth_metadata_processor.h", "include/grpc++/channel.h", "include/grpc++/client_context.h", "include/grpc++/completion_queue.h", "include/grpc++/create_channel.h", - "include/grpc++/credentials.h", "include/grpc++/generic/async_generic_service.h", "include/grpc++/generic/generic_stub.h", "include/grpc++/impl/call.h", @@ -745,13 +743,15 @@ cc_library( "include/grpc++/impl/thd.h", "include/grpc++/impl/thd_cxx11.h", "include/grpc++/impl/thd_no_cxx11.h", + "include/grpc++/security/auth_context.h", + "include/grpc++/security/auth_metadata_processor.h", + "include/grpc++/security/credentials.h", + "include/grpc++/security/server_credentials.h", "include/grpc++/server.h", "include/grpc++/server_builder.h", "include/grpc++/server_context.h", - "include/grpc++/server_credentials.h", "include/grpc++/support/async_stream.h", "include/grpc++/support/async_unary_call.h", - "include/grpc++/support/auth_context.h", "include/grpc++/support/byte_buffer.h", "include/grpc++/support/channel_arguments.h", "include/grpc++/support/config.h", @@ -813,12 +813,10 @@ cc_library( "src/cpp/util/time.cc", ], hdrs = [ - "include/grpc++/auth_metadata_processor.h", "include/grpc++/channel.h", "include/grpc++/client_context.h", "include/grpc++/completion_queue.h", "include/grpc++/create_channel.h", - "include/grpc++/credentials.h", "include/grpc++/generic/async_generic_service.h", "include/grpc++/generic/generic_stub.h", "include/grpc++/impl/call.h", @@ -835,13 +833,15 @@ cc_library( "include/grpc++/impl/thd.h", "include/grpc++/impl/thd_cxx11.h", "include/grpc++/impl/thd_no_cxx11.h", + "include/grpc++/security/auth_context.h", + "include/grpc++/security/auth_metadata_processor.h", + "include/grpc++/security/credentials.h", + "include/grpc++/security/server_credentials.h", "include/grpc++/server.h", "include/grpc++/server_builder.h", "include/grpc++/server_context.h", - "include/grpc++/server_credentials.h", "include/grpc++/support/async_stream.h", "include/grpc++/support/async_unary_call.h", - "include/grpc++/support/auth_context.h", "include/grpc++/support/byte_buffer.h", "include/grpc++/support/channel_arguments.h", "include/grpc++/support/config.h", diff --git a/Makefile b/Makefile index 43844690556..1c2fca3154d 100644 --- a/Makefile +++ b/Makefile @@ -4587,12 +4587,10 @@ LIBGRPC++_SRC = \ src/cpp/util/time.cc \ PUBLIC_HEADERS_CXX += \ - include/grpc++/auth_metadata_processor.h \ include/grpc++/channel.h \ include/grpc++/client_context.h \ include/grpc++/completion_queue.h \ include/grpc++/create_channel.h \ - include/grpc++/credentials.h \ include/grpc++/generic/async_generic_service.h \ include/grpc++/generic/generic_stub.h \ include/grpc++/impl/call.h \ @@ -4609,13 +4607,15 @@ PUBLIC_HEADERS_CXX += \ include/grpc++/impl/thd.h \ include/grpc++/impl/thd_cxx11.h \ include/grpc++/impl/thd_no_cxx11.h \ + include/grpc++/security/auth_context.h \ + include/grpc++/security/auth_metadata_processor.h \ + include/grpc++/security/credentials.h \ + include/grpc++/security/server_credentials.h \ include/grpc++/server.h \ include/grpc++/server_builder.h \ include/grpc++/server_context.h \ - include/grpc++/server_credentials.h \ include/grpc++/support/async_stream.h \ include/grpc++/support/async_unary_call.h \ - include/grpc++/support/auth_context.h \ include/grpc++/support/byte_buffer.h \ include/grpc++/support/channel_arguments.h \ include/grpc++/support/config.h \ @@ -4832,12 +4832,10 @@ LIBGRPC++_UNSECURE_SRC = \ src/cpp/util/time.cc \ PUBLIC_HEADERS_CXX += \ - include/grpc++/auth_metadata_processor.h \ include/grpc++/channel.h \ include/grpc++/client_context.h \ include/grpc++/completion_queue.h \ include/grpc++/create_channel.h \ - include/grpc++/credentials.h \ include/grpc++/generic/async_generic_service.h \ include/grpc++/generic/generic_stub.h \ include/grpc++/impl/call.h \ @@ -4854,13 +4852,15 @@ PUBLIC_HEADERS_CXX += \ include/grpc++/impl/thd.h \ include/grpc++/impl/thd_cxx11.h \ include/grpc++/impl/thd_no_cxx11.h \ + include/grpc++/security/auth_context.h \ + include/grpc++/security/auth_metadata_processor.h \ + include/grpc++/security/credentials.h \ + include/grpc++/security/server_credentials.h \ include/grpc++/server.h \ include/grpc++/server_builder.h \ include/grpc++/server_context.h \ - include/grpc++/server_credentials.h \ include/grpc++/support/async_stream.h \ include/grpc++/support/async_unary_call.h \ - include/grpc++/support/auth_context.h \ include/grpc++/support/byte_buffer.h \ include/grpc++/support/channel_arguments.h \ include/grpc++/support/config.h \ diff --git a/build.json b/build.json index 7db50a93616..1e00771ee33 100644 --- a/build.json +++ b/build.json @@ -32,12 +32,10 @@ { "name": "grpc++_base", "public_headers": [ - "include/grpc++/auth_metadata_processor.h", "include/grpc++/channel.h", "include/grpc++/client_context.h", "include/grpc++/completion_queue.h", "include/grpc++/create_channel.h", - "include/grpc++/credentials.h", "include/grpc++/generic/async_generic_service.h", "include/grpc++/generic/generic_stub.h", "include/grpc++/impl/call.h", @@ -54,13 +52,15 @@ "include/grpc++/impl/thd.h", "include/grpc++/impl/thd_cxx11.h", "include/grpc++/impl/thd_no_cxx11.h", + "include/grpc++/security/auth_context.h", + "include/grpc++/security/auth_metadata_processor.h", + "include/grpc++/security/credentials.h", + "include/grpc++/security/server_credentials.h", "include/grpc++/server.h", "include/grpc++/server_builder.h", "include/grpc++/server_context.h", - "include/grpc++/server_credentials.h", "include/grpc++/support/async_stream.h", "include/grpc++/support/async_unary_call.h", - "include/grpc++/support/auth_context.h", "include/grpc++/support/byte_buffer.h", "include/grpc++/support/channel_arguments.h", "include/grpc++/support/config.h", diff --git a/include/grpc++/server.h b/include/grpc++/server.h index c8979e433cb..22d14ee6528 100644 --- a/include/grpc++/server.h +++ b/include/grpc++/server.h @@ -41,6 +41,7 @@ #include #include #include +#include #include #include @@ -54,7 +55,6 @@ class AsyncGenericService; class RpcService; class RpcServiceMethod; class ServerAsyncStreamingInterface; -class ServerCredentials; class ThreadPoolInterface; // Currently it only supports handling rpcs in a single thread. diff --git a/test/cpp/end2end/async_end2end_test.cc b/test/cpp/end2end/async_end2end_test.cc index 46886a2f15f..686e7627b98 100644 --- a/test/cpp/end2end/async_end2end_test.cc +++ b/test/cpp/end2end/async_end2end_test.cc @@ -39,8 +39,6 @@ #include #include #include -#include -#include #include #include #include diff --git a/test/cpp/end2end/client_crash_test.cc b/test/cpp/end2end/client_crash_test.cc index 4123fd5f130..058e6961666 100644 --- a/test/cpp/end2end/client_crash_test.cc +++ b/test/cpp/end2end/client_crash_test.cc @@ -37,11 +37,9 @@ #include #include #include -#include #include #include #include -#include #include #include "test/core/util/port.h" diff --git a/test/cpp/end2end/client_crash_test_server.cc b/test/cpp/end2end/client_crash_test_server.cc index 6e1d84c3a5d..7ffeecca701 100644 --- a/test/cpp/end2end/client_crash_test_server.cc +++ b/test/cpp/end2end/client_crash_test_server.cc @@ -39,7 +39,6 @@ #include #include #include -#include #include "test/cpp/util/echo.grpc.pb.h" DEFINE_string(address, "", "Address to bind to"); diff --git a/test/cpp/end2end/generic_end2end_test.cc b/test/cpp/end2end/generic_end2end_test.cc index 166e576826a..6a469167287 100644 --- a/test/cpp/end2end/generic_end2end_test.cc +++ b/test/cpp/end2end/generic_end2end_test.cc @@ -42,8 +42,6 @@ #include #include #include -#include -#include #include #include #include diff --git a/test/cpp/end2end/mock_test.cc b/test/cpp/end2end/mock_test.cc index b7bec024585..4450e29f09f 100644 --- a/test/cpp/end2end/mock_test.cc +++ b/test/cpp/end2end/mock_test.cc @@ -39,8 +39,6 @@ #include #include #include -#include -#include #include #include #include diff --git a/test/cpp/end2end/server_crash_test.cc b/test/cpp/end2end/server_crash_test.cc index 23e9af312c6..4b6793abe60 100644 --- a/test/cpp/end2end/server_crash_test.cc +++ b/test/cpp/end2end/server_crash_test.cc @@ -37,8 +37,6 @@ #include #include #include -#include -#include #include #include #include diff --git a/test/cpp/end2end/server_crash_test_client.cc b/test/cpp/end2end/server_crash_test_client.cc index 4cfb131ab27..17869362c2e 100644 --- a/test/cpp/end2end/server_crash_test_client.cc +++ b/test/cpp/end2end/server_crash_test_client.cc @@ -40,7 +40,6 @@ #include #include #include -#include #include "test/cpp/util/echo.grpc.pb.h" DEFINE_string(address, "", "Address to connect to"); diff --git a/test/cpp/end2end/shutdown_test.cc b/test/cpp/end2end/shutdown_test.cc index e351b432602..a25f85cc75a 100644 --- a/test/cpp/end2end/shutdown_test.cc +++ b/test/cpp/end2end/shutdown_test.cc @@ -38,8 +38,6 @@ #include #include #include -#include -#include #include #include #include diff --git a/test/cpp/end2end/thread_stress_test.cc b/test/cpp/end2end/thread_stress_test.cc index 85042e00555..539e141d396 100644 --- a/test/cpp/end2end/thread_stress_test.cc +++ b/test/cpp/end2end/thread_stress_test.cc @@ -40,8 +40,6 @@ #include #include #include -#include -#include #include #include #include diff --git a/test/cpp/end2end/zookeeper_test.cc b/test/cpp/end2end/zookeeper_test.cc index 931541ca344..d4c7f0489fd 100644 --- a/test/cpp/end2end/zookeeper_test.cc +++ b/test/cpp/end2end/zookeeper_test.cc @@ -34,11 +34,9 @@ #include #include #include -#include #include #include #include -#include #include #include #include diff --git a/test/cpp/interop/reconnect_interop_server.cc b/test/cpp/interop/reconnect_interop_server.cc index be1d840bdfe..f52417bae0f 100644 --- a/test/cpp/interop/reconnect_interop_server.cc +++ b/test/cpp/interop/reconnect_interop_server.cc @@ -42,7 +42,6 @@ #include #include #include -#include #include #include #include diff --git a/test/cpp/util/cli_call_test.cc b/test/cpp/util/cli_call_test.cc index 1c3f0d3f734..b4133aa71ac 100644 --- a/test/cpp/util/cli_call_test.cc +++ b/test/cpp/util/cli_call_test.cc @@ -37,8 +37,6 @@ #include #include #include -#include -#include #include #include #include diff --git a/tools/doxygen/Doxyfile.c++ b/tools/doxygen/Doxyfile.c++ index 0cd6ddd020a..96708c06227 100644 --- a/tools/doxygen/Doxyfile.c++ +++ b/tools/doxygen/Doxyfile.c++ @@ -760,12 +760,10 @@ WARN_LOGFILE = # spaces. # Note: If this tag is empty the current directory is searched. -INPUT = include/grpc++/auth_metadata_processor.h \ -include/grpc++/channel.h \ +INPUT = include/grpc++/channel.h \ include/grpc++/client_context.h \ include/grpc++/completion_queue.h \ include/grpc++/create_channel.h \ -include/grpc++/credentials.h \ include/grpc++/generic/async_generic_service.h \ include/grpc++/generic/generic_stub.h \ include/grpc++/impl/call.h \ @@ -782,13 +780,15 @@ include/grpc++/impl/sync_no_cxx11.h \ include/grpc++/impl/thd.h \ include/grpc++/impl/thd_cxx11.h \ include/grpc++/impl/thd_no_cxx11.h \ +include/grpc++/security/auth_context.h \ +include/grpc++/security/auth_metadata_processor.h \ +include/grpc++/security/credentials.h \ +include/grpc++/security/server_credentials.h \ include/grpc++/server.h \ include/grpc++/server_builder.h \ include/grpc++/server_context.h \ -include/grpc++/server_credentials.h \ include/grpc++/support/async_stream.h \ include/grpc++/support/async_unary_call.h \ -include/grpc++/support/auth_context.h \ include/grpc++/support/byte_buffer.h \ include/grpc++/support/channel_arguments.h \ include/grpc++/support/config.h \ diff --git a/tools/doxygen/Doxyfile.c++.internal b/tools/doxygen/Doxyfile.c++.internal index b2ebb2d31ee..185d24720ce 100644 --- a/tools/doxygen/Doxyfile.c++.internal +++ b/tools/doxygen/Doxyfile.c++.internal @@ -760,12 +760,10 @@ WARN_LOGFILE = # spaces. # Note: If this tag is empty the current directory is searched. -INPUT = include/grpc++/auth_metadata_processor.h \ -include/grpc++/channel.h \ +INPUT = include/grpc++/channel.h \ include/grpc++/client_context.h \ include/grpc++/completion_queue.h \ include/grpc++/create_channel.h \ -include/grpc++/credentials.h \ include/grpc++/generic/async_generic_service.h \ include/grpc++/generic/generic_stub.h \ include/grpc++/impl/call.h \ @@ -782,13 +780,15 @@ include/grpc++/impl/sync_no_cxx11.h \ include/grpc++/impl/thd.h \ include/grpc++/impl/thd_cxx11.h \ include/grpc++/impl/thd_no_cxx11.h \ +include/grpc++/security/auth_context.h \ +include/grpc++/security/auth_metadata_processor.h \ +include/grpc++/security/credentials.h \ +include/grpc++/security/server_credentials.h \ include/grpc++/server.h \ include/grpc++/server_builder.h \ include/grpc++/server_context.h \ -include/grpc++/server_credentials.h \ include/grpc++/support/async_stream.h \ include/grpc++/support/async_unary_call.h \ -include/grpc++/support/auth_context.h \ include/grpc++/support/byte_buffer.h \ include/grpc++/support/channel_arguments.h \ include/grpc++/support/config.h \ diff --git a/tools/run_tests/sources_and_headers.json b/tools/run_tests/sources_and_headers.json index c91220948d5..939261da650 100644 --- a/tools/run_tests/sources_and_headers.json +++ b/tools/run_tests/sources_and_headers.json @@ -13088,12 +13088,10 @@ "grpc" ], "headers": [ - "include/grpc++/auth_metadata_processor.h", "include/grpc++/channel.h", "include/grpc++/client_context.h", "include/grpc++/completion_queue.h", "include/grpc++/create_channel.h", - "include/grpc++/credentials.h", "include/grpc++/generic/async_generic_service.h", "include/grpc++/generic/generic_stub.h", "include/grpc++/impl/call.h", @@ -13110,13 +13108,15 @@ "include/grpc++/impl/thd.h", "include/grpc++/impl/thd_cxx11.h", "include/grpc++/impl/thd_no_cxx11.h", + "include/grpc++/security/auth_context.h", + "include/grpc++/security/auth_metadata_processor.h", + "include/grpc++/security/credentials.h", + "include/grpc++/security/server_credentials.h", "include/grpc++/server.h", "include/grpc++/server_builder.h", "include/grpc++/server_context.h", - "include/grpc++/server_credentials.h", "include/grpc++/support/async_stream.h", "include/grpc++/support/async_unary_call.h", - "include/grpc++/support/auth_context.h", "include/grpc++/support/byte_buffer.h", "include/grpc++/support/channel_arguments.h", "include/grpc++/support/config.h", @@ -13140,12 +13140,10 @@ "language": "c++", "name": "grpc++", "src": [ - "include/grpc++/auth_metadata_processor.h", "include/grpc++/channel.h", "include/grpc++/client_context.h", "include/grpc++/completion_queue.h", "include/grpc++/create_channel.h", - "include/grpc++/credentials.h", "include/grpc++/generic/async_generic_service.h", "include/grpc++/generic/generic_stub.h", "include/grpc++/impl/call.h", @@ -13162,13 +13160,15 @@ "include/grpc++/impl/thd.h", "include/grpc++/impl/thd_cxx11.h", "include/grpc++/impl/thd_no_cxx11.h", + "include/grpc++/security/auth_context.h", + "include/grpc++/security/auth_metadata_processor.h", + "include/grpc++/security/credentials.h", + "include/grpc++/security/server_credentials.h", "include/grpc++/server.h", "include/grpc++/server_builder.h", "include/grpc++/server_context.h", - "include/grpc++/server_credentials.h", "include/grpc++/support/async_stream.h", "include/grpc++/support/async_unary_call.h", - "include/grpc++/support/auth_context.h", "include/grpc++/support/byte_buffer.h", "include/grpc++/support/channel_arguments.h", "include/grpc++/support/config.h", @@ -13270,12 +13270,10 @@ "grpc_unsecure" ], "headers": [ - "include/grpc++/auth_metadata_processor.h", "include/grpc++/channel.h", "include/grpc++/client_context.h", "include/grpc++/completion_queue.h", "include/grpc++/create_channel.h", - "include/grpc++/credentials.h", "include/grpc++/generic/async_generic_service.h", "include/grpc++/generic/generic_stub.h", "include/grpc++/impl/call.h", @@ -13292,13 +13290,15 @@ "include/grpc++/impl/thd.h", "include/grpc++/impl/thd_cxx11.h", "include/grpc++/impl/thd_no_cxx11.h", + "include/grpc++/security/auth_context.h", + "include/grpc++/security/auth_metadata_processor.h", + "include/grpc++/security/credentials.h", + "include/grpc++/security/server_credentials.h", "include/grpc++/server.h", "include/grpc++/server_builder.h", "include/grpc++/server_context.h", - "include/grpc++/server_credentials.h", "include/grpc++/support/async_stream.h", "include/grpc++/support/async_unary_call.h", - "include/grpc++/support/auth_context.h", "include/grpc++/support/byte_buffer.h", "include/grpc++/support/channel_arguments.h", "include/grpc++/support/config.h", @@ -13319,12 +13319,10 @@ "language": "c++", "name": "grpc++_unsecure", "src": [ - "include/grpc++/auth_metadata_processor.h", "include/grpc++/channel.h", "include/grpc++/client_context.h", "include/grpc++/completion_queue.h", "include/grpc++/create_channel.h", - "include/grpc++/credentials.h", "include/grpc++/generic/async_generic_service.h", "include/grpc++/generic/generic_stub.h", "include/grpc++/impl/call.h", @@ -13341,13 +13339,15 @@ "include/grpc++/impl/thd.h", "include/grpc++/impl/thd_cxx11.h", "include/grpc++/impl/thd_no_cxx11.h", + "include/grpc++/security/auth_context.h", + "include/grpc++/security/auth_metadata_processor.h", + "include/grpc++/security/credentials.h", + "include/grpc++/security/server_credentials.h", "include/grpc++/server.h", "include/grpc++/server_builder.h", "include/grpc++/server_context.h", - "include/grpc++/server_credentials.h", "include/grpc++/support/async_stream.h", "include/grpc++/support/async_unary_call.h", - "include/grpc++/support/auth_context.h", "include/grpc++/support/byte_buffer.h", "include/grpc++/support/channel_arguments.h", "include/grpc++/support/config.h", diff --git a/vsprojects/grpc++/grpc++.vcxproj b/vsprojects/grpc++/grpc++.vcxproj index 0d8cf1d6c3a..5f8b7d8f4ca 100644 --- a/vsprojects/grpc++/grpc++.vcxproj +++ b/vsprojects/grpc++/grpc++.vcxproj @@ -213,12 +213,10 @@ - - @@ -235,13 +233,15 @@ + + + + - - diff --git a/vsprojects/grpc++/grpc++.vcxproj.filters b/vsprojects/grpc++/grpc++.vcxproj.filters index e38328b1305..38b5e14e0b5 100644 --- a/vsprojects/grpc++/grpc++.vcxproj.filters +++ b/vsprojects/grpc++/grpc++.vcxproj.filters @@ -99,9 +99,6 @@ - - include\grpc++ - include\grpc++ @@ -114,9 +111,6 @@ include\grpc++ - - include\grpc++ - include\grpc++\generic @@ -165,6 +159,18 @@ include\grpc++\impl + + include\grpc++\security + + + include\grpc++\security + + + include\grpc++\security + + + include\grpc++\security + include\grpc++ @@ -174,18 +180,12 @@ include\grpc++ - - include\grpc++ - include\grpc++\support include\grpc++\support - - include\grpc++\support - include\grpc++\support @@ -260,6 +260,9 @@ {0da8cd95-314f-da1b-5ce7-7791a5be1f1a} + + {a80eb32b-1be9-1187-5f40-30d92accecc8} + {a5c10dae-f715-2a30-1066-d22f8bc94cb2} diff --git a/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj b/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj index d5e44d64d4f..68154c67ec7 100644 --- a/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj +++ b/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj @@ -213,12 +213,10 @@ - - @@ -235,13 +233,15 @@ + + + + - - diff --git a/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj.filters b/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj.filters index da7d87e173b..52582d3aed6 100644 --- a/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj.filters +++ b/vsprojects/grpc++_unsecure/grpc++_unsecure.vcxproj.filters @@ -84,9 +84,6 @@ - - include\grpc++ - include\grpc++ @@ -99,9 +96,6 @@ include\grpc++ - - include\grpc++ - include\grpc++\generic @@ -150,6 +144,18 @@ include\grpc++\impl + + include\grpc++\security + + + include\grpc++\security + + + include\grpc++\security + + + include\grpc++\security + include\grpc++ @@ -159,18 +165,12 @@ include\grpc++ - - include\grpc++ - include\grpc++\support include\grpc++\support - - include\grpc++\support - include\grpc++\support @@ -236,6 +236,9 @@ {dadc0002-f2ac-451b-a9b8-33b8de10b5fc} + + {64bf60ff-9192-bb59-dcc8-8a0021e1d016} + {0ebf8008-80b9-d6da-e1dc-854bf1ec2195}