ap_fwrite

include/util_filter.h
/**
 * Write a buffer for the current filter, buffering if possible.
 * @param f the filter we are writing to
 * @param bb The brigade to buffer into
 * @param data The data to write
 * @param nbyte The number of bytes in the data
 */
#define ap_fwrite(f, bb, data, nbyte) \
       apr_brigade_write(bb, ap_filter_flush, f, data, nbyte)
最終更新:2009年01月05日 22:29