Skip to content

Commit d7a15b8

Browse files
committed
Merge remote-tracking branch 'upstream/master' into base64_decode
2 parents 0a0c1b0 + 1bc2976 commit d7a15b8

File tree

121 files changed

+4563
-1649
lines changed

Some content is hidden

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

121 files changed

+4563
-1649
lines changed

BUILD

Lines changed: 22 additions & 4 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",
@@ -464,7 +464,9 @@ cc_library(
464464
"src/core/ext/client_config/subchannel_index.c",
465465
"src/core/ext/client_config/uri_parser.c",
466466
"src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
467+
"src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
467468
"src/core/ext/transport/chttp2/client/insecure/channel_create.c",
469+
"src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
468470
"src/core/ext/lb_policy/grpclb/load_balancer_api.c",
469471
"src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
470472
"src/core/ext/lb_policy/pick_first/pick_first.c",
@@ -490,6 +492,7 @@ cc_library(
490492
"include/grpc/byte_buffer_reader.h",
491493
"include/grpc/compression.h",
492494
"include/grpc/grpc.h",
495+
"include/grpc/grpc_posix.h",
493496
"include/grpc/status.h",
494497
"include/grpc/impl/codegen/byte_buffer.h",
495498
"include/grpc/impl/codegen/byte_buffer_reader.h",
@@ -681,7 +684,7 @@ cc_library(
681684
"src/core/lib/channel/connected_channel.c",
682685
"src/core/lib/channel/http_client_filter.c",
683686
"src/core/lib/channel/http_server_filter.c",
684-
"src/core/lib/compression/compression_algorithm.c",
687+
"src/core/lib/compression/compression.c",
685688
"src/core/lib/compression/message_compress.c",
686689
"src/core/lib/debug/trace.c",
687690
"src/core/lib/http/format_request.c",
@@ -837,6 +840,7 @@ cc_library(
837840
"include/grpc/byte_buffer_reader.h",
838841
"include/grpc/compression.h",
839842
"include/grpc/grpc.h",
843+
"include/grpc/grpc_posix.h",
840844
"include/grpc/status.h",
841845
"include/grpc/impl/codegen/byte_buffer.h",
842846
"include/grpc/impl/codegen/byte_buffer_reader.h",
@@ -1011,7 +1015,7 @@ cc_library(
10111015
"src/core/lib/channel/connected_channel.c",
10121016
"src/core/lib/channel/http_client_filter.c",
10131017
"src/core/lib/channel/http_server_filter.c",
1014-
"src/core/lib/compression/compression_algorithm.c",
1018+
"src/core/lib/compression/compression.c",
10151019
"src/core/lib/compression/message_compress.c",
10161020
"src/core/lib/debug/trace.c",
10171021
"src/core/lib/http/format_request.c",
@@ -1088,6 +1092,7 @@ cc_library(
10881092
"src/core/lib/transport/transport.c",
10891093
"src/core/lib/transport/transport_op_string.c",
10901094
"src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1095+
"src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
10911096
"src/core/ext/transport/chttp2/transport/bin_decoder.c",
10921097
"src/core/ext/transport/chttp2/transport/bin_encoder.c",
10931098
"src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
@@ -1112,6 +1117,7 @@ cc_library(
11121117
"src/core/ext/transport/chttp2/transport/writing.c",
11131118
"src/core/ext/transport/chttp2/alpn/alpn.c",
11141119
"src/core/ext/transport/chttp2/client/insecure/channel_create.c",
1120+
"src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
11151121
"src/core/ext/client_config/channel_connectivity.c",
11161122
"src/core/ext/client_config/client_channel.c",
11171123
"src/core/ext/client_config/client_channel_factory.c",
@@ -1156,6 +1162,7 @@ cc_library(
11561162
"include/grpc/byte_buffer_reader.h",
11571163
"include/grpc/compression.h",
11581164
"include/grpc/grpc.h",
1165+
"include/grpc/grpc_posix.h",
11591166
"include/grpc/status.h",
11601167
"include/grpc/impl/codegen/byte_buffer.h",
11611168
"include/grpc/impl/codegen/byte_buffer_reader.h",
@@ -1235,6 +1242,7 @@ cc_library(
12351242
"src/cpp/client/client_context.cc",
12361243
"src/cpp/client/create_channel.cc",
12371244
"src/cpp/client/create_channel_internal.cc",
1245+
"src/cpp/client/create_channel_posix.cc",
12381246
"src/cpp/client/credentials.cc",
12391247
"src/cpp/client/generic_stub.cc",
12401248
"src/cpp/client/insecure_credentials.cc",
@@ -1250,6 +1258,7 @@ cc_library(
12501258
"src/cpp/server/server_builder.cc",
12511259
"src/cpp/server/server_context.cc",
12521260
"src/cpp/server/server_credentials.cc",
1261+
"src/cpp/server/server_posix.cc",
12531262
"src/cpp/util/byte_buffer.cc",
12541263
"src/cpp/util/slice.cc",
12551264
"src/cpp/util/status.cc",
@@ -1263,6 +1272,7 @@ cc_library(
12631272
"include/grpc++/client_context.h",
12641273
"include/grpc++/completion_queue.h",
12651274
"include/grpc++/create_channel.h",
1275+
"include/grpc++/create_channel_posix.h",
12661276
"include/grpc++/generic/async_generic_service.h",
12671277
"include/grpc++/generic/generic_stub.h",
12681278
"include/grpc++/grpc++.h",
@@ -1291,6 +1301,7 @@ cc_library(
12911301
"include/grpc++/server.h",
12921302
"include/grpc++/server_builder.h",
12931303
"include/grpc++/server_context.h",
1304+
"include/grpc++/server_posix.h",
12941305
"include/grpc++/support/async_stream.h",
12951306
"include/grpc++/support/async_unary_call.h",
12961307
"include/grpc++/support/byte_buffer.h",
@@ -1379,6 +1390,7 @@ cc_library(
13791390
"src/cpp/client/client_context.cc",
13801391
"src/cpp/client/create_channel.cc",
13811392
"src/cpp/client/create_channel_internal.cc",
1393+
"src/cpp/client/create_channel_posix.cc",
13821394
"src/cpp/client/credentials.cc",
13831395
"src/cpp/client/generic_stub.cc",
13841396
"src/cpp/client/insecure_credentials.cc",
@@ -1394,6 +1406,7 @@ cc_library(
13941406
"src/cpp/server/server_builder.cc",
13951407
"src/cpp/server/server_context.cc",
13961408
"src/cpp/server/server_credentials.cc",
1409+
"src/cpp/server/server_posix.cc",
13971410
"src/cpp/util/byte_buffer.cc",
13981411
"src/cpp/util/slice.cc",
13991412
"src/cpp/util/status.cc",
@@ -1407,6 +1420,7 @@ cc_library(
14071420
"include/grpc++/client_context.h",
14081421
"include/grpc++/completion_queue.h",
14091422
"include/grpc++/create_channel.h",
1423+
"include/grpc++/create_channel_posix.h",
14101424
"include/grpc++/generic/async_generic_service.h",
14111425
"include/grpc++/generic/generic_stub.h",
14121426
"include/grpc++/grpc++.h",
@@ -1435,6 +1449,7 @@ cc_library(
14351449
"include/grpc++/server.h",
14361450
"include/grpc++/server_builder.h",
14371451
"include/grpc++/server_context.h",
1452+
"include/grpc++/server_posix.h",
14381453
"include/grpc++/support/async_stream.h",
14391454
"include/grpc++/support/async_unary_call.h",
14401455
"include/grpc++/support/byte_buffer.h",
@@ -1699,7 +1714,7 @@ objc_library(
16991714
"src/core/lib/channel/connected_channel.c",
17001715
"src/core/lib/channel/http_client_filter.c",
17011716
"src/core/lib/channel/http_server_filter.c",
1702-
"src/core/lib/compression/compression_algorithm.c",
1717+
"src/core/lib/compression/compression.c",
17031718
"src/core/lib/compression/message_compress.c",
17041719
"src/core/lib/debug/trace.c",
17051720
"src/core/lib/http/format_request.c",
@@ -1847,7 +1862,9 @@ objc_library(
18471862
"src/core/ext/client_config/subchannel_index.c",
18481863
"src/core/ext/client_config/uri_parser.c",
18491864
"src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1865+
"src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
18501866
"src/core/ext/transport/chttp2/client/insecure/channel_create.c",
1867+
"src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
18511868
"src/core/ext/lb_policy/grpclb/load_balancer_api.c",
18521869
"src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
18531870
"src/core/ext/lb_policy/pick_first/pick_first.c",
@@ -1873,6 +1890,7 @@ objc_library(
18731890
"include/grpc/byte_buffer_reader.h",
18741891
"include/grpc/compression.h",
18751892
"include/grpc/grpc.h",
1893+
"include/grpc/grpc_posix.h",
18761894
"include/grpc/status.h",
18771895
"include/grpc/impl/codegen/byte_buffer.h",
18781896
"include/grpc/impl/codegen/byte_buffer_reader.h",

0 commit comments

Comments
 (0)