cef_response_filter_t

Implement this structure to filter resource response content. The functions of this structure will be called on the browser process IO thread.

Members

Variables

base
cef_base_ref_counted_t base;

Base structure.

filter
cef_response_filter_status_t function(cef_response_filter_t* self, void* data_in, size_t data_in_size, size_t* data_in_read, void* data_out, size_t data_out_size, size_t* data_out_written) nothrow filter;

|data_out_size|. If no output data was written then all data must be read from |data_in| (user must set |data_in_read| = |data_in_size|). 3. Return RESPONSE_FILTER_DONE if all output data was written or RESPONSE_FILTER_NEED_MORE_DATA if output data is still pending.

Meta