Searched defs:ftype (Results 1 - 3 of 3) sorted by relevance

/httpd/include/
H A Dutil_filter.h226 * ftype >= AP_FTYPE_CONNECTION). Any use of this function for
243 ap_filter_type ftype; member in struct:ap_filter_rec_t
348 * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT_SET or
355 ap_filter_type ftype);
361 ap_filter_type ftype);
364 #define ap_register_output_filter(name,ffunc,init,ftype) \
365 ap_register_output_filter_protocol(name,ffunc,init,ftype,0)
378 * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT_SET or
388 ap_filter_type ftype,
/httpd/server/
H A Dutil_filter.c42 || (before_this)->frec->ftype > (f)->frec->ftype \
206 ap_filter_type ftype,
239 frec->ftype = ftype;
249 ap_filter_type ftype)
253 return register_filter(name, f, filter_init, ftype,
260 ap_filter_type ftype)
263 filter_init, ftype, 0);
270 ap_filter_type ftype,
203 register_filter(const char *name, ap_filter_func filter_func, ap_init_filter_func filter_init, ap_filter_type ftype, filter_trie_node **reg_filter_set) argument
246 ap_register_input_filter(const char *name, ap_in_filter_func filter_func, ap_init_filter_func filter_init, ap_filter_type ftype) argument
257 ap_register_output_filter(const char *name, ap_out_filter_func filter_func, ap_init_filter_func filter_init, ap_filter_type ftype) argument
266 ap_register_output_filter_protocol( const char *name, ap_out_filter_func filter_func, ap_init_filter_func filter_init, ap_filter_type ftype, unsigned int proto_flags) argument
[all...]
/httpd/modules/filters/
H A Dmod_ext_filter.c46 ap_filter_type ftype; member in struct:ef_filter_t
233 filter->ftype = AP_FTYPE_RESOURCE;
274 if (!strncasecmp(args, "ftype=", 6)) {
277 filter->ftype = atoi(token);
323 ap_register_output_filter(filter->name, ef_output_filter, NULL, filter->ftype);
327 ap_register_input_filter(filter->name, ef_input_filter, NULL, filter->ftype);

Completed in 23 milliseconds