X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=filter.h;h=09e45913aa1f116a68e85039a8059f93f13d6822;hp=9e197f6cffb1d45ee46f23f393d6f5781a168b6a;hb=847cf62ae6a5df96af143f21cdf9b36f4ffdff70;hpb=471684761a2039bbc89aa1e3c33c62de6bef86cf;ds=inline diff --git a/filter.h b/filter.h index 9e197f6c..09e45913 100644 --- a/filter.h +++ b/filter.h @@ -63,12 +63,12 @@ struct filter_chain { * pointer to variable containing the number of bytes loaded in the output buffer */ size_t *out_loaded; - /** non-zero if this filter wont' produce any more output */ - int eof; - /** pointer to the eof flag of the receiving application */ - int *input_eof; - /** pointer to the eof flag of the writing application */ - int *output_eof; + /** Non-zero if this filter wont' produce any more output. */ + int error; + /** Pointer to the error variable of the receiving application. */ + int *input_error; + /** Pointer to the eof flag of the writing application. */ + int *output_error; /** the task associated with the filter chain */ struct task task; };