Skip to content

Commit 0ca68b7

Browse files
committed
Merge github.com:grpc/grpc into error
2 parents 16ebf5a + 1bc2976 commit 0ca68b7

File tree

154 files changed

+7426
-1978
lines changed

Some content is hidden

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

154 files changed

+7426
-1978
lines changed

BUILD

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ cc_library(
316316
"src/core/lib/channel/connected_channel.c",
317317
"src/core/lib/channel/http_client_filter.c",
318318
"src/core/lib/channel/http_server_filter.c",
319-
"src/core/lib/compression/compression_algorithm.c",
319+
"src/core/lib/compression/compression.c",
320320
"src/core/lib/compression/message_compress.c",
321321
"src/core/lib/debug/trace.c",
322322
"src/core/lib/http/format_request.c",
@@ -466,7 +466,9 @@ cc_library(
466466
"src/core/ext/client_config/subchannel_index.c",
467467
"src/core/ext/client_config/uri_parser.c",
468468
"src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
469+
"src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
469470
"src/core/ext/transport/chttp2/client/insecure/channel_create.c",
471+
"src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
470472
"src/core/ext/lb_policy/grpclb/load_balancer_api.c",
471473
"src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
472474
"src/core/ext/lb_policy/pick_first/pick_first.c",
@@ -492,6 +494,7 @@ cc_library(
492494
"include/grpc/byte_buffer_reader.h",
493495
"include/grpc/compression.h",
494496
"include/grpc/grpc.h",
497+
"include/grpc/grpc_posix.h",
495498
"include/grpc/status.h",
496499
"include/grpc/impl/codegen/byte_buffer.h",
497500
"include/grpc/impl/codegen/byte_buffer_reader.h",
@@ -685,7 +688,7 @@ cc_library(
685688
"src/core/lib/channel/connected_channel.c",
686689
"src/core/lib/channel/http_client_filter.c",
687690
"src/core/lib/channel/http_server_filter.c",
688-
"src/core/lib/compression/compression_algorithm.c",
691+
"src/core/lib/compression/compression.c",
689692
"src/core/lib/compression/message_compress.c",
690693
"src/core/lib/debug/trace.c",
691694
"src/core/lib/http/format_request.c",
@@ -843,6 +846,7 @@ cc_library(
843846
"include/grpc/byte_buffer_reader.h",
844847
"include/grpc/compression.h",
845848
"include/grpc/grpc.h",
849+
"include/grpc/grpc_posix.h",
846850
"include/grpc/status.h",
847851
"include/grpc/impl/codegen/byte_buffer.h",
848852
"include/grpc/impl/codegen/byte_buffer_reader.h",
@@ -1018,7 +1022,7 @@ cc_library(
10181022
"src/core/lib/channel/connected_channel.c",
10191023
"src/core/lib/channel/http_client_filter.c",
10201024
"src/core/lib/channel/http_server_filter.c",
1021-
"src/core/lib/compression/compression_algorithm.c",
1025+
"src/core/lib/compression/compression.c",
10221026
"src/core/lib/compression/message_compress.c",
10231027
"src/core/lib/debug/trace.c",
10241028
"src/core/lib/http/format_request.c",
@@ -1097,6 +1101,7 @@ cc_library(
10971101
"src/core/lib/transport/transport.c",
10981102
"src/core/lib/transport/transport_op_string.c",
10991103
"src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1104+
"src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
11001105
"src/core/ext/transport/chttp2/transport/bin_encoder.c",
11011106
"src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
11021107
"src/core/ext/transport/chttp2/transport/chttp2_transport.c",
@@ -1120,6 +1125,7 @@ cc_library(
11201125
"src/core/ext/transport/chttp2/transport/writing.c",
11211126
"src/core/ext/transport/chttp2/alpn/alpn.c",
11221127
"src/core/ext/transport/chttp2/client/insecure/channel_create.c",
1128+
"src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
11231129
"src/core/ext/client_config/channel_connectivity.c",
11241130
"src/core/ext/client_config/client_channel.c",
11251131
"src/core/ext/client_config/client_channel_factory.c",
@@ -1164,6 +1170,7 @@ cc_library(
11641170
"include/grpc/byte_buffer_reader.h",
11651171
"include/grpc/compression.h",
11661172
"include/grpc/grpc.h",
1173+
"include/grpc/grpc_posix.h",
11671174
"include/grpc/status.h",
11681175
"include/grpc/impl/codegen/byte_buffer.h",
11691176
"include/grpc/impl/codegen/byte_buffer_reader.h",
@@ -1206,8 +1213,8 @@ cc_library(
12061213
cc_library(
12071214
name = "grpc++",
12081215
srcs = [
1216+
"include/grpc++/impl/codegen/core_codegen.h",
12091217
"src/cpp/client/secure_credentials.h",
1210-
"src/cpp/common/core_codegen.h",
12111218
"src/cpp/common/secure_auth_context.h",
12121219
"src/cpp/server/secure_server_credentials.h",
12131220
"src/cpp/client/create_channel_internal.h",
@@ -1223,6 +1230,7 @@ cc_library(
12231230
"src/cpp/client/client_context.cc",
12241231
"src/cpp/client/create_channel.cc",
12251232
"src/cpp/client/create_channel_internal.cc",
1233+
"src/cpp/client/create_channel_posix.cc",
12261234
"src/cpp/client/credentials.cc",
12271235
"src/cpp/client/generic_stub.cc",
12281236
"src/cpp/client/insecure_credentials.cc",
@@ -1238,6 +1246,7 @@ cc_library(
12381246
"src/cpp/server/server_builder.cc",
12391247
"src/cpp/server/server_context.cc",
12401248
"src/cpp/server/server_credentials.cc",
1249+
"src/cpp/server/server_posix.cc",
12411250
"src/cpp/util/byte_buffer.cc",
12421251
"src/cpp/util/slice.cc",
12431252
"src/cpp/util/status.cc",
@@ -1251,11 +1260,13 @@ cc_library(
12511260
"include/grpc++/client_context.h",
12521261
"include/grpc++/completion_queue.h",
12531262
"include/grpc++/create_channel.h",
1263+
"include/grpc++/create_channel_posix.h",
12541264
"include/grpc++/generic/async_generic_service.h",
12551265
"include/grpc++/generic/generic_stub.h",
12561266
"include/grpc++/grpc++.h",
12571267
"include/grpc++/impl/call.h",
12581268
"include/grpc++/impl/client_unary_call.h",
1269+
"include/grpc++/impl/codegen/core_codegen.h",
12591270
"include/grpc++/impl/grpc_library.h",
12601271
"include/grpc++/impl/method_handler_impl.h",
12611272
"include/grpc++/impl/rpc_method.h",
@@ -1278,6 +1289,7 @@ cc_library(
12781289
"include/grpc++/server.h",
12791290
"include/grpc++/server_builder.h",
12801291
"include/grpc++/server_context.h",
1292+
"include/grpc++/server_posix.h",
12811293
"include/grpc++/support/async_stream.h",
12821294
"include/grpc++/support/async_unary_call.h",
12831295
"include/grpc++/support/byte_buffer.h",
@@ -1359,14 +1371,14 @@ cc_library(
13591371
name = "grpc++_unsecure",
13601372
srcs = [
13611373
"src/cpp/client/create_channel_internal.h",
1362-
"src/cpp/common/core_codegen.h",
13631374
"src/cpp/server/dynamic_thread_pool.h",
13641375
"src/cpp/server/thread_pool_interface.h",
13651376
"src/cpp/common/insecure_create_auth_context.cc",
13661377
"src/cpp/client/channel.cc",
13671378
"src/cpp/client/client_context.cc",
13681379
"src/cpp/client/create_channel.cc",
13691380
"src/cpp/client/create_channel_internal.cc",
1381+
"src/cpp/client/create_channel_posix.cc",
13701382
"src/cpp/client/credentials.cc",
13711383
"src/cpp/client/generic_stub.cc",
13721384
"src/cpp/client/insecure_credentials.cc",
@@ -1382,6 +1394,7 @@ cc_library(
13821394
"src/cpp/server/server_builder.cc",
13831395
"src/cpp/server/server_context.cc",
13841396
"src/cpp/server/server_credentials.cc",
1397+
"src/cpp/server/server_posix.cc",
13851398
"src/cpp/util/byte_buffer.cc",
13861399
"src/cpp/util/slice.cc",
13871400
"src/cpp/util/status.cc",
@@ -1395,11 +1408,13 @@ cc_library(
13951408
"include/grpc++/client_context.h",
13961409
"include/grpc++/completion_queue.h",
13971410
"include/grpc++/create_channel.h",
1411+
"include/grpc++/create_channel_posix.h",
13981412
"include/grpc++/generic/async_generic_service.h",
13991413
"include/grpc++/generic/generic_stub.h",
14001414
"include/grpc++/grpc++.h",
14011415
"include/grpc++/impl/call.h",
14021416
"include/grpc++/impl/client_unary_call.h",
1417+
"include/grpc++/impl/codegen/core_codegen.h",
14031418
"include/grpc++/impl/grpc_library.h",
14041419
"include/grpc++/impl/method_handler_impl.h",
14051420
"include/grpc++/impl/rpc_method.h",
@@ -1422,6 +1437,7 @@ cc_library(
14221437
"include/grpc++/server.h",
14231438
"include/grpc++/server_builder.h",
14241439
"include/grpc++/server_context.h",
1440+
"include/grpc++/server_posix.h",
14251441
"include/grpc++/support/async_stream.h",
14261442
"include/grpc++/support/async_unary_call.h",
14271443
"include/grpc++/support/byte_buffer.h",
@@ -1684,7 +1700,7 @@ objc_library(
16841700
"src/core/lib/channel/connected_channel.c",
16851701
"src/core/lib/channel/http_client_filter.c",
16861702
"src/core/lib/channel/http_server_filter.c",
1687-
"src/core/lib/compression/compression_algorithm.c",
1703+
"src/core/lib/compression/compression.c",
16881704
"src/core/lib/compression/message_compress.c",
16891705
"src/core/lib/debug/trace.c",
16901706
"src/core/lib/http/format_request.c",
@@ -1834,7 +1850,9 @@ objc_library(
18341850
"src/core/ext/client_config/subchannel_index.c",
18351851
"src/core/ext/client_config/uri_parser.c",
18361852
"src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1853+
"src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
18371854
"src/core/ext/transport/chttp2/client/insecure/channel_create.c",
1855+
"src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
18381856
"src/core/ext/lb_policy/grpclb/load_balancer_api.c",
18391857
"src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
18401858
"src/core/ext/lb_policy/pick_first/pick_first.c",
@@ -1860,6 +1878,7 @@ objc_library(
18601878
"include/grpc/byte_buffer_reader.h",
18611879
"include/grpc/compression.h",
18621880
"include/grpc/grpc.h",
1881+
"include/grpc/grpc_posix.h",
18631882
"include/grpc/status.h",
18641883
"include/grpc/impl/codegen/byte_buffer.h",
18651884
"include/grpc/impl/codegen/byte_buffer_reader.h",

0 commit comments

Comments
 (0)