* gaflight_call_options_clear_headers: * @options: A #GAFlightCallOptions. * * Clear all headers. * * Since: 9.0.0 */
| 327 | * Since: 9.0.0 |
| 328 | */ |
| 329 | void |
| 330 | gaflight_call_options_clear_headers(GAFlightCallOptions *options) |
| 331 | { |
| 332 | auto flight_options = gaflight_call_options_get_raw(options); |
| 333 | flight_options->headers.clear(); |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * gaflight_call_options_foreach_header: |
nothing calls this directly
no test coverage detected