diff options
author | Craig Tiller <ctiller@google.com> | 2016-04-06 14:21:41 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-04-06 14:21:41 -0700 |
commit | cae3cb31eddb264b5d3809b3fe8f12a80ee92804 (patch) | |
tree | 4a829a6fee808bbd12ad9d94a19e0f4579ee418e /src/core/lib/transport | |
parent | 38ec40608f693ffcc52120d5d31bec9084930537 (diff) | |
parent | f90edd95df0aa1bd4decd866431728653df04075 (diff) |
Merge github.com:grpc/grpc into split-me-baby-one-more-time
Diffstat (limited to 'src/core/lib/transport')
-rw-r--r-- | src/core/lib/transport/transport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lib/transport/transport.h b/src/core/lib/transport/transport.h index a6a7fd2480..10a358c126 100644 --- a/src/core/lib/transport/transport.h +++ b/src/core/lib/transport/transport.h @@ -106,9 +106,9 @@ typedef struct grpc_transport_stream_op { /** Send initial metadata to the peer, from the provided metadata batch. idempotent_request MUST be set if this is non-null */ grpc_metadata_batch *send_initial_metadata; - /** Iff send_initial_metadata != NULL, flags if this is an idempotent request - or not */ - bool send_idempotent_request; + /** Iff send_initial_metadata != NULL, flags associated with + send_initial_metadata: a bitfield of GRPC_INITIAL_METADATA_xxx */ + uint32_t send_initial_metadata_flags; /** Send trailing metadata to the peer, from the provided metadata batch. */ grpc_metadata_batch *send_trailing_metadata; |