[chttp2] Fix import related bug #30262

This function signature changed by accident; it's not used anywhere in the OSS codebase, only internally (perhaps a good hint that it should be eliminated... I'm going to look into that).

Revert the signature from the change in #30252 to unblock the import.
pull/30263/head
Craig Tiller 2 years ago committed by GitHub
parent 64939531f9
commit 5314ee43ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/core/ext/transport/chttp2/transport/internal.h

@ -30,6 +30,7 @@
#include "absl/types/optional.h"
#include <grpc/event_engine/memory_allocator.h>
#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/slice.h>
#include "src/core/ext/transport/chttp2/transport/flow_control.h"
@ -774,8 +775,8 @@ void grpc_chttp2_fail_pending_writes(grpc_chttp2_transport* t,
/** Set the default keepalive configurations, must only be called at
initialization */
void grpc_chttp2_config_default_keepalive_args(
const grpc_core::ChannelArgs& args, bool is_client);
void grpc_chttp2_config_default_keepalive_args(grpc_channel_args* args,
bool is_client);
void grpc_chttp2_retry_initiate_ping(void* tp, grpc_error_handle error);

Loading…
Cancel
Save