From: Timo Sirainen Date: Fri, 13 Sep 2013 21:26:58 +0000 (+0300) Subject: Comment update. X-Git-Tag: 2.2.6~95 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b4a7dbfb4256abcd2f983d56bd032acd55f59591;p=thirdparty%2Fdovecot%2Fcore.git Comment update. --- diff --git a/src/lib/connection.h b/src/lib/connection.h index b5ff32847f..e574370efd 100644 --- a/src/lib/connection.h +++ b/src/lib/connection.h @@ -36,7 +36,8 @@ struct connection_vfuncs { void (*client_connected)(struct connection *conn, bool success); /* implement one of the input*() methods. - They return 0 = ok, -1 = error, disconnect the client */ + They return 1 = ok, continue. 0 = ok, but stop processing more + lines, -1 = error, disconnect the client. */ void (*input)(struct connection *conn); int (*input_line)(struct connection *conn, const char *line); int (*input_args)(struct connection *conn, const char *const *args);