- Author(s): ctiller
- Approver: markdroth
- Status: In Review
- Implemented in: C Core
- Last updated: [Date]
- Discussion at: (filled after thread exists)
Remove unused fields from grpc_call_details.
grpc_call_details contains two fields that are both always zero. Remove them and the need to test that they are so.
None.
From grpc_call_details:
- Remove the field
flags
. - Remove the field
reserved
.
These fields must always be set to zero and provide no information.
Implemented as part of grpc/grpc#30444.