Remove `include/grpc/impl/codegen/connectivity_state.h` (#31728)

* Remove `include/grpc/impl/codegen/connectivity_state.h`

* Automated change: Fix sanity tests

* Automated change: Fix sanity tests
pull/31873/head
Cheng-Yu Chung 2 years ago committed by GitHub
parent a6843d4659
commit 2e9e6439f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      BUILD
  2. 3
      CMakeLists.txt
  3. 2
      Makefile
  4. 3
      build_autogenerated.yaml
  5. 1
      gRPC-Core.podspec
  6. 1
      grpc.gemspec
  7. 4
      include/grpc/grpc.h
  8. 23
      include/grpc/impl/codegen/connectivity_state.h
  9. 47
      include/grpc/impl/connectivity_state.h
  10. 1
      include/grpc/module.modulemap
  11. 2
      include/grpcpp/impl/channel_interface.h
  12. 1
      package.xml
  13. 2
      src/core/ext/filters/channel_idle/channel_idle_filter.h
  14. 2
      src/core/ext/filters/client_channel/channel_connectivity.cc
  15. 2
      src/core/ext/filters/client_channel/client_channel.h
  16. 2
      src/core/ext/filters/client_channel/client_channel_channelz.h
  17. 2
      src/core/ext/filters/client_channel/health/health_check_client.cc
  18. 2
      src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc
  19. 2
      src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc
  20. 2
      src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc
  21. 2
      src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc
  22. 2
      src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc
  23. 2
      src/core/ext/filters/client_channel/lb_policy/priority/priority.cc
  24. 2
      src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc
  25. 2
      src/core/ext/filters/client_channel/lb_policy/rls/rls.cc
  26. 2
      src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc
  27. 2
      src/core/ext/filters/client_channel/lb_policy/subchannel_list.h
  28. 2
      src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc
  29. 2
      src/core/ext/filters/client_channel/lb_policy/xds/cds.cc
  30. 2
      src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc
  31. 2
      src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc
  32. 2
      src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc
  33. 2
      src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc
  34. 2
      src/core/ext/filters/client_channel/subchannel.h
  35. 2
      src/core/ext/transport/chttp2/transport/chttp2_transport.cc
  36. 2
      src/core/ext/transport/inproc/inproc_transport.cc
  37. 2
      src/core/ext/xds/xds_transport_grpc.cc
  38. 2
      src/core/lib/channel/channelz.h
  39. 2
      src/core/lib/load_balancing/lb_policy.h
  40. 2
      src/core/lib/load_balancing/subchannel_interface.h
  41. 2
      src/core/lib/surface/lame_client.cc
  42. 2
      src/core/lib/surface/server.cc
  43. 2
      src/core/lib/transport/connectivity_state.h
  44. 2
      src/core/lib/transport/transport.h
  45. 2
      src/cpp/client/channel_cc.cc
  46. 1
      test/core/surface/public_headers_must_be_c89.c
  47. 1
      tools/doxygen/Doxyfile.c++
  48. 1
      tools/doxygen/Doxyfile.c++.internal
  49. 1
      tools/doxygen/Doxyfile.core
  50. 1
      tools/doxygen/Doxyfile.core.internal

@ -214,6 +214,7 @@ GRPC_PUBLIC_HDRS = [
"include/grpc/impl/codegen/status.h",
"include/grpc/impl/codegen/slice.h",
"include/grpc/impl/compression_types.h",
"include/grpc/impl/connectivity_state.h",
]
GRPC_PUBLIC_EVENT_ENGINE_HDRS = [

3
CMakeLists.txt generated

@ -2487,6 +2487,7 @@ foreach(_hdr
include/grpc/impl/codegen/sync_posix.h
include/grpc/impl/codegen/sync_windows.h
include/grpc/impl/compression_types.h
include/grpc/impl/connectivity_state.h
include/grpc/load_reporting.h
include/grpc/slice.h
include/grpc/slice_buffer.h
@ -3092,6 +3093,7 @@ foreach(_hdr
include/grpc/impl/codegen/sync_posix.h
include/grpc/impl/codegen/sync_windows.h
include/grpc/impl/compression_types.h
include/grpc/impl/connectivity_state.h
include/grpc/load_reporting.h
include/grpc/slice.h
include/grpc/slice_buffer.h
@ -4569,6 +4571,7 @@ foreach(_hdr
include/grpc/impl/codegen/sync_posix.h
include/grpc/impl/codegen/sync_windows.h
include/grpc/impl/compression_types.h
include/grpc/impl/connectivity_state.h
include/grpc/load_reporting.h
include/grpc/slice.h
include/grpc/slice_buffer.h

2
Makefile generated

@ -1711,6 +1711,7 @@ PUBLIC_HEADERS_C += \
include/grpc/impl/codegen/sync_posix.h \
include/grpc/impl/codegen/sync_windows.h \
include/grpc/impl/compression_types.h \
include/grpc/impl/connectivity_state.h \
include/grpc/load_reporting.h \
include/grpc/slice.h \
include/grpc/slice_buffer.h \
@ -2176,6 +2177,7 @@ PUBLIC_HEADERS_C += \
include/grpc/impl/codegen/sync_posix.h \
include/grpc/impl/codegen/sync_windows.h \
include/grpc/impl/compression_types.h \
include/grpc/impl/connectivity_state.h \
include/grpc/load_reporting.h \
include/grpc/slice.h \
include/grpc/slice_buffer.h \

@ -293,6 +293,7 @@ libs:
- include/grpc/impl/codegen/sync_posix.h
- include/grpc/impl/codegen/sync_windows.h
- include/grpc/impl/compression_types.h
- include/grpc/impl/connectivity_state.h
- include/grpc/load_reporting.h
- include/grpc/slice.h
- include/grpc/slice_buffer.h
@ -1886,6 +1887,7 @@ libs:
- include/grpc/impl/codegen/sync_posix.h
- include/grpc/impl/codegen/sync_windows.h
- include/grpc/impl/compression_types.h
- include/grpc/impl/connectivity_state.h
- include/grpc/load_reporting.h
- include/grpc/slice.h
- include/grpc/slice_buffer.h
@ -3422,6 +3424,7 @@ libs:
- include/grpc/impl/codegen/sync_posix.h
- include/grpc/impl/codegen/sync_windows.h
- include/grpc/impl/compression_types.h
- include/grpc/impl/connectivity_state.h
- include/grpc/load_reporting.h
- include/grpc/slice.h
- include/grpc/slice_buffer.h

1
gRPC-Core.podspec generated

@ -144,6 +144,7 @@ Pod::Spec.new do |s|
'include/grpc/impl/codegen/sync_posix.h',
'include/grpc/impl/codegen/sync_windows.h',
'include/grpc/impl/compression_types.h',
'include/grpc/impl/connectivity_state.h',
'include/grpc/load_reporting.h',
'include/grpc/slice.h',
'include/grpc/slice_buffer.h',

1
grpc.gemspec generated

@ -87,6 +87,7 @@ Gem::Specification.new do |s|
s.files += %w( include/grpc/impl/codegen/sync_posix.h )
s.files += %w( include/grpc/impl/codegen/sync_windows.h )
s.files += %w( include/grpc/impl/compression_types.h )
s.files += %w( include/grpc/impl/connectivity_state.h )
s.files += %w( include/grpc/load_reporting.h )
s.files += %w( include/grpc/slice.h )
s.files += %w( include/grpc/slice_buffer.h )

@ -24,9 +24,9 @@
#include <stddef.h>
#include <grpc/byte_buffer.h>
#include <grpc/impl/codegen/connectivity_state.h> // IWYU pragma: export
#include <grpc/impl/codegen/grpc_types.h> // IWYU pragma: export
#include <grpc/impl/codegen/grpc_types.h> // IWYU pragma: export
#include <grpc/impl/codegen/propagation_bits.h>
#include <grpc/impl/connectivity_state.h> // IWYU pragma: export
#include <grpc/slice.h>
#include <grpc/status.h>
#include <grpc/support/time.h>

@ -22,26 +22,9 @@
// IWYU pragma: private, include <grpc/grpc.h>
// IWYU pragma: friend "src/.*"
#ifdef __cplusplus
extern "C" {
#endif
#include <grpc/support/port_platform.h>
/** Connectivity state of a channel. */
typedef enum {
/** channel is idle */
GRPC_CHANNEL_IDLE,
/** channel is connecting */
GRPC_CHANNEL_CONNECTING,
/** channel is ready for work */
GRPC_CHANNEL_READY,
/** channel has seen a failure but expects to recover */
GRPC_CHANNEL_TRANSIENT_FAILURE,
/** channel has seen a failure that it cannot recover from */
GRPC_CHANNEL_SHUTDOWN
} grpc_connectivity_state;
#ifdef __cplusplus
}
#endif
/// TODO(chengyuc): Remove this file after solving compatibility.
#include <grpc/impl/connectivity_state.h>
#endif /* GRPC_IMPL_CODEGEN_CONNECTIVITY_STATE_H */

@ -0,0 +1,47 @@
/*
*
* Copyright 2016 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef GRPC_IMPL_CONNECTIVITY_STATE_H
#define GRPC_IMPL_CONNECTIVITY_STATE_H
// IWYU pragma: private, include <grpc/grpc.h>
// IWYU pragma: friend "src/.*"
#ifdef __cplusplus
extern "C" {
#endif
/** Connectivity state of a channel. */
typedef enum {
/** channel is idle */
GRPC_CHANNEL_IDLE,
/** channel is connecting */
GRPC_CHANNEL_CONNECTING,
/** channel is ready for work */
GRPC_CHANNEL_READY,
/** channel has seen a failure but expects to recover */
GRPC_CHANNEL_TRANSIENT_FAILURE,
/** channel has seen a failure that it cannot recover from */
GRPC_CHANNEL_SHUTDOWN
} grpc_connectivity_state;
#ifdef __cplusplus
}
#endif
#endif /* GRPC_IMPL_CONNECTIVITY_STATE_H */

@ -28,6 +28,7 @@ header "byte_buffer.h"
header "impl/codegen/sync_abseil.h"
header "impl/codegen/sync_generic.h"
header "impl/compression_types.h"
header "impl/connectivity_state.h"
header "load_reporting.h"
header "slice.h"
header "slice_buffer.h"

@ -19,7 +19,7 @@
#ifndef GRPCPP_IMPL_CHANNEL_INTERFACE_H
#define GRPCPP_IMPL_CHANNEL_INTERFACE_H
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpcpp/impl/call.h>
#include <grpcpp/support/status.h>
#include <grpcpp/support/time.h>

1
package.xml generated

@ -69,6 +69,7 @@
<file baseinstalldir="/" name="include/grpc/impl/codegen/sync_posix.h" role="src" />
<file baseinstalldir="/" name="include/grpc/impl/codegen/sync_windows.h" role="src" />
<file baseinstalldir="/" name="include/grpc/impl/compression_types.h" role="src" />
<file baseinstalldir="/" name="include/grpc/impl/connectivity_state.h" role="src" />
<file baseinstalldir="/" name="include/grpc/load_reporting.h" role="src" />
<file baseinstalldir="/" name="include/grpc/slice.h" role="src" />
<file baseinstalldir="/" name="include/grpc/slice_buffer.h" role="src" />

@ -22,7 +22,7 @@
#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include "src/core/ext/filters/channel_idle/idle_filter_state.h"
#include "src/core/lib/channel/channel_args.h"

@ -25,8 +25,8 @@
#include <grpc/event_engine/event_engine.h>
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include <grpc/support/time.h>

@ -33,8 +33,8 @@
#include "absl/strings/string_view.h"
#include "absl/types/optional.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/atm.h>
#include "src/core/ext/filters/client_channel/client_channel_factory.h"

@ -29,7 +29,7 @@
#include "absl/base/thread_annotations.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include "src/core/lib/channel/channel_trace.h"

@ -31,7 +31,7 @@
#include "upb/upb.h"
#include "upb/upb.hpp"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include <grpc/status.h>
#include <grpc/support/log.h>

@ -26,7 +26,7 @@
#include "absl/strings/string_view.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/lib/channel/channel_args.h"

@ -83,9 +83,9 @@
#include <grpc/byte_buffer.h>
#include <grpc/byte_buffer_reader.h>
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/codegen/propagation_bits.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include <grpc/status.h>
#include <grpc/support/alloc.h>

@ -34,7 +34,7 @@
#include "upb/upb.hpp"
#include "xds/service/orca/v3/orca.upb.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include <grpc/status.h>
#include <grpc/support/alloc.h>

@ -38,7 +38,7 @@
#include "absl/types/variant.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h"

@ -31,8 +31,8 @@
#include "absl/strings/string_view.h"
#include "absl/types/optional.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/subchannel_list.h"

@ -34,8 +34,8 @@
#include "absl/types/optional.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/address_filtering.h"

@ -42,7 +42,7 @@
#define XXH_INLINE_ALL
#include "xxhash.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/client_channel.h"

@ -55,9 +55,9 @@
#include <grpc/byte_buffer_reader.h>
#include <grpc/event_engine/event_engine.h>
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/codegen/propagation_bits.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include <grpc/status.h>
#include <grpc/support/log.h>

@ -31,7 +31,7 @@
#include "absl/strings/string_view.h"
#include "absl/types/optional.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/subchannel_list.h"

@ -30,7 +30,7 @@
#include "absl/status/status.h"
#include "absl/types/optional.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/lib/channel/channel_args.h"

@ -35,7 +35,7 @@
#include "absl/types/optional.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/address_filtering.h"

@ -33,7 +33,7 @@
#include <grpc/event_engine/event_engine.h>
#include <grpc/grpc.h>
#include <grpc/grpc_security.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h"

@ -35,7 +35,7 @@
#include "absl/types/variant.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h"

@ -33,7 +33,7 @@
#include "absl/types/optional.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/client_channel.h"

@ -35,8 +35,8 @@
#include "absl/types/optional.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/address_filtering.h"

@ -29,7 +29,7 @@
#include "absl/strings/string_view.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/support/log.h>
#include "src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h"

@ -31,7 +31,7 @@
#include "absl/types/optional.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include "src/core/ext/filters/client_channel/client_channel_channelz.h"
#include "src/core/ext/filters/client_channel/connector.h"

@ -39,8 +39,8 @@
#include "absl/types/optional.h"
#include "absl/types/variant.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice_buffer.h>
#include <grpc/status.h>
#include <grpc/support/alloc.h>

@ -35,7 +35,7 @@
#include "absl/types/optional.h"
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/status.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>

@ -29,8 +29,8 @@
#include <grpc/byte_buffer.h>
#include <grpc/byte_buffer_reader.h>
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/propagation_bits.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include <grpc/support/log.h>

@ -34,8 +34,8 @@
#include "absl/strings/string_view.h"
#include "absl/types/optional.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include "src/core/lib/channel/channel_trace.h"

@ -34,7 +34,7 @@
#include "absl/types/variant.h"
#include <grpc/event_engine/event_engine.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include "src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h"
#include "src/core/lib/channel/channel_args.h"

@ -24,7 +24,7 @@
#include "absl/status/status.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include "src/core/lib/gprpp/ref_counted.h"
#include "src/core/lib/gprpp/ref_counted_ptr.h"

@ -26,7 +26,7 @@
#include "absl/status/statusor.h"
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/status.h>
#include <grpc/support/log.h>

@ -34,7 +34,7 @@
#include "absl/types/optional.h"
#include <grpc/byte_buffer.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/status.h>
#include <grpc/support/log.h>
#include <grpc/support/time.h>

@ -28,7 +28,7 @@
#include "absl/status/status.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include "src/core/lib/debug/trace.h"
#include "src/core/lib/gprpp/orphanable.h"

@ -33,7 +33,7 @@
#include "absl/strings/string_view.h"
#include "absl/types/optional.h"
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include <grpc/status.h>
#include <grpc/support/atm.h>

@ -24,8 +24,8 @@
#include <vector>
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/slice.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>

@ -42,6 +42,7 @@
#include <grpc/impl/codegen/sync_custom.h>
#include <grpc/impl/codegen/sync_generic.h>
#include <grpc/impl/compression_types.h>
#include <grpc/impl/connectivity_state.h>
#include <grpc/load_reporting.h>
#include <grpc/slice.h>
#include <grpc/slice_buffer.h>

@ -917,6 +917,7 @@ include/grpc/impl/codegen/sync_generic.h \
include/grpc/impl/codegen/sync_posix.h \
include/grpc/impl/codegen/sync_windows.h \
include/grpc/impl/compression_types.h \
include/grpc/impl/connectivity_state.h \
include/grpc/load_reporting.h \
include/grpc/slice.h \
include/grpc/slice_buffer.h \

@ -917,6 +917,7 @@ include/grpc/impl/codegen/sync_generic.h \
include/grpc/impl/codegen/sync_posix.h \
include/grpc/impl/codegen/sync_windows.h \
include/grpc/impl/compression_types.h \
include/grpc/impl/connectivity_state.h \
include/grpc/load_reporting.h \
include/grpc/slice.h \
include/grpc/slice_buffer.h \

@ -847,6 +847,7 @@ include/grpc/impl/codegen/sync_generic.h \
include/grpc/impl/codegen/sync_posix.h \
include/grpc/impl/codegen/sync_windows.h \
include/grpc/impl/compression_types.h \
include/grpc/impl/connectivity_state.h \
include/grpc/load_reporting.h \
include/grpc/slice.h \
include/grpc/slice_buffer.h \

@ -847,6 +847,7 @@ include/grpc/impl/codegen/sync_generic.h \
include/grpc/impl/codegen/sync_posix.h \
include/grpc/impl/codegen/sync_windows.h \
include/grpc/impl/compression_types.h \
include/grpc/impl/connectivity_state.h \
include/grpc/load_reporting.h \
include/grpc/slice.h \
include/grpc/slice_buffer.h \

Loading…
Cancel
Save