Skip to content

Commit 13c0940

Browse files
committed
Merge branch 'idempotent_endpoint_shutdown' into handshake_timeout
2 parents 8df99f2 + 52f2312 commit 13c0940

File tree

128 files changed

+11390
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+11390
-220
lines changed

BUILD

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ cc_library(
236236
"src/core/lib/transport/static_metadata.h",
237237
"src/core/lib/transport/transport.h",
238238
"src/core/lib/transport/transport_impl.h",
239+
"src/core/ext/transport/chttp2/transport/bin_decoder.h",
239240
"src/core/ext/transport/chttp2/transport/bin_encoder.h",
240241
"src/core/ext/transport/chttp2/transport/chttp2_transport.h",
241242
"src/core/ext/transport/chttp2/transport/frame.h",
@@ -395,6 +396,7 @@ cc_library(
395396
"src/core/lib/transport/transport.c",
396397
"src/core/lib/transport/transport_op_string.c",
397398
"src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
399+
"src/core/ext/transport/chttp2/transport/bin_decoder.c",
398400
"src/core/ext/transport/chttp2/transport/bin_encoder.c",
399401
"src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
400402
"src/core/ext/transport/chttp2/transport/chttp2_transport.c",
@@ -619,6 +621,7 @@ cc_library(
619621
"src/core/lib/transport/transport.h",
620622
"src/core/lib/transport/transport_impl.h",
621623
"third_party/objective_c/Cronet/cronet_c_for_grpc.h",
624+
"src/core/ext/transport/chttp2/transport/bin_decoder.h",
622625
"src/core/ext/transport/chttp2/transport/bin_encoder.h",
623626
"src/core/ext/transport/chttp2/transport/chttp2_transport.h",
624627
"src/core/ext/transport/chttp2/transport/frame.h",
@@ -770,6 +773,7 @@ cc_library(
770773
"src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
771774
"src/core/ext/transport/cronet/transport/cronet_transport.c",
772775
"src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
776+
"src/core/ext/transport/chttp2/transport/bin_decoder.c",
773777
"src/core/ext/transport/chttp2/transport/bin_encoder.c",
774778
"src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
775779
"src/core/ext/transport/chttp2/transport/chttp2_transport.c",
@@ -965,6 +969,7 @@ cc_library(
965969
"src/core/lib/transport/static_metadata.h",
966970
"src/core/lib/transport/transport.h",
967971
"src/core/lib/transport/transport_impl.h",
972+
"src/core/ext/transport/chttp2/transport/bin_decoder.h",
968973
"src/core/ext/transport/chttp2/transport/bin_encoder.h",
969974
"src/core/ext/transport/chttp2/transport/chttp2_transport.h",
970975
"src/core/ext/transport/chttp2/transport/frame.h",
@@ -1102,6 +1107,7 @@ cc_library(
11021107
"src/core/lib/transport/transport_op_string.c",
11031108
"src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
11041109
"src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
1110+
"src/core/ext/transport/chttp2/transport/bin_decoder.c",
11051111
"src/core/ext/transport/chttp2/transport/bin_encoder.c",
11061112
"src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
11071113
"src/core/ext/transport/chttp2/transport/chttp2_transport.c",
@@ -1367,6 +1373,84 @@ cc_library(
13671373

13681374

13691375

1376+
cc_library(
1377+
name = "grpc++_reflection",
1378+
srcs = [
1379+
"src/cpp/ext/proto_server_reflection.h",
1380+
"src/cpp/ext/proto_server_reflection.cc",
1381+
"src/cpp/ext/proto_server_reflection_plugin.cc",
1382+
"src/cpp/ext/reflection.grpc.pb.cc",
1383+
"src/cpp/ext/reflection.pb.cc",
1384+
],
1385+
hdrs = [
1386+
"include/grpc++/ext/proto_server_reflection_plugin.h",
1387+
"include/grpc++/ext/reflection.grpc.pb.h",
1388+
"include/grpc++/ext/reflection.pb.h",
1389+
"include/grpc++/impl/codegen/proto_utils.h",
1390+
"include/grpc++/impl/codegen/async_stream.h",
1391+
"include/grpc++/impl/codegen/async_unary_call.h",
1392+
"include/grpc++/impl/codegen/call.h",
1393+
"include/grpc++/impl/codegen/call_hook.h",
1394+
"include/grpc++/impl/codegen/channel_interface.h",
1395+
"include/grpc++/impl/codegen/client_context.h",
1396+
"include/grpc++/impl/codegen/client_unary_call.h",
1397+
"include/grpc++/impl/codegen/completion_queue.h",
1398+
"include/grpc++/impl/codegen/completion_queue_tag.h",
1399+
"include/grpc++/impl/codegen/config.h",
1400+
"include/grpc++/impl/codegen/core_codegen_interface.h",
1401+
"include/grpc++/impl/codegen/create_auth_context.h",
1402+
"include/grpc++/impl/codegen/grpc_library.h",
1403+
"include/grpc++/impl/codegen/method_handler_impl.h",
1404+
"include/grpc++/impl/codegen/rpc_method.h",
1405+
"include/grpc++/impl/codegen/rpc_service_method.h",
1406+
"include/grpc++/impl/codegen/security/auth_context.h",
1407+
"include/grpc++/impl/codegen/serialization_traits.h",
1408+
"include/grpc++/impl/codegen/server_context.h",
1409+
"include/grpc++/impl/codegen/server_interface.h",
1410+
"include/grpc++/impl/codegen/service_type.h",
1411+
"include/grpc++/impl/codegen/status.h",
1412+
"include/grpc++/impl/codegen/status_code_enum.h",
1413+
"include/grpc++/impl/codegen/string_ref.h",
1414+
"include/grpc++/impl/codegen/stub_options.h",
1415+
"include/grpc++/impl/codegen/sync.h",
1416+
"include/grpc++/impl/codegen/sync_cxx11.h",
1417+
"include/grpc++/impl/codegen/sync_no_cxx11.h",
1418+
"include/grpc++/impl/codegen/sync_stream.h",
1419+
"include/grpc++/impl/codegen/time.h",
1420+
"include/grpc/impl/codegen/byte_buffer.h",
1421+
"include/grpc/impl/codegen/byte_buffer_reader.h",
1422+
"include/grpc/impl/codegen/compression_types.h",
1423+
"include/grpc/impl/codegen/connectivity_state.h",
1424+
"include/grpc/impl/codegen/grpc_types.h",
1425+
"include/grpc/impl/codegen/propagation_bits.h",
1426+
"include/grpc/impl/codegen/status.h",
1427+
"include/grpc/impl/codegen/alloc.h",
1428+
"include/grpc/impl/codegen/atm.h",
1429+
"include/grpc/impl/codegen/atm_gcc_atomic.h",
1430+
"include/grpc/impl/codegen/atm_gcc_sync.h",
1431+
"include/grpc/impl/codegen/atm_windows.h",
1432+
"include/grpc/impl/codegen/log.h",
1433+
"include/grpc/impl/codegen/port_platform.h",
1434+
"include/grpc/impl/codegen/slice.h",
1435+
"include/grpc/impl/codegen/slice_buffer.h",
1436+
"include/grpc/impl/codegen/sync.h",
1437+
"include/grpc/impl/codegen/sync_generic.h",
1438+
"include/grpc/impl/codegen/sync_posix.h",
1439+
"include/grpc/impl/codegen/sync_windows.h",
1440+
"include/grpc/impl/codegen/time.h",
1441+
"include/grpc++/impl/codegen/config_protobuf.h",
1442+
],
1443+
includes = [
1444+
"include",
1445+
".",
1446+
],
1447+
deps = [
1448+
":grpc++",
1449+
],
1450+
)
1451+
1452+
1453+
13701454
cc_library(
13711455
name = "grpc++_unsecure",
13721456
srcs = [
@@ -1779,6 +1863,7 @@ objc_library(
17791863
"src/core/lib/transport/transport.c",
17801864
"src/core/lib/transport/transport_op_string.c",
17811865
"src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
1866+
"src/core/ext/transport/chttp2/transport/bin_decoder.c",
17821867
"src/core/ext/transport/chttp2/transport/bin_encoder.c",
17831868
"src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
17841869
"src/core/ext/transport/chttp2/transport/chttp2_transport.c",
@@ -1981,6 +2066,7 @@ objc_library(
19812066
"src/core/lib/transport/static_metadata.h",
19822067
"src/core/lib/transport/transport.h",
19832068
"src/core/lib/transport/transport_impl.h",
2069+
"src/core/ext/transport/chttp2/transport/bin_decoder.h",
19842070
"src/core/ext/transport/chttp2/transport/bin_encoder.h",
19852071
"src/core/ext/transport/chttp2/transport/chttp2_transport.h",
19862072
"src/core/ext/transport/chttp2/transport/frame.h",

0 commit comments

Comments
 (0)