void BearHttpsRequest_set_chunk_header_read_props(BearHttpsRequest *self, int chunk_size, int max_chunk_size);Configures the chunk reading properties for HTTP response headers. This controls how the client reads response data in chunks, which can be useful for memory management and large responses.
self: Pointer to theBearHttpsRequestobjectchunk_size: The size of each chunk to readmax_chunk_size: The maximum chunk size allowed
This function does not return a value.