X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=filter.h;h=15bfaf8cdb0c2533c463fe8272d21e5528b80dbd;hp=b877b649fd877e6efe28f89193d995ec22c40ea3;hb=e61e21f2aae608ff694c924cdeb2056ac1136b77;hpb=f42f8143f383b82e1672b2cecf987dc5b9b23c64 diff --git a/filter.h b/filter.h index b877b649..15bfaf8c 100644 --- a/filter.h +++ b/filter.h @@ -95,18 +95,10 @@ struct filter_chain { struct filter_callback { /** All callbacks are organized in a doubly linked list. */ struct list_head node; - /** - * Private data. - * - * May be initialized by the application before registering the callback. This - * pointer is not used by the filter subsystem. It is provided for use within - * the input/output/close callback functions. - */ - void *data; /** * The input callback. * - * In not \p NULL, the filter subsystem calls this function whenever the filter + * If not \p NULL, the filter subsystem calls this function whenever the filter * consumed some or all of its input buffer. A pointer to the buffer of consumed * data, its length and a pointer to the own \a filter_callback structure are passed * to \a input_cb. The input callback is expected to return a negative value on errors.