Skip to content

Commit

Permalink
lib-program-client: Document the purpose of the use_dotstream setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanbosch authored and villesavolainen committed Jan 31, 2018
1 parent b6f7d78 commit 009cc18
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib-program-client/program-client.h
Expand Up @@ -22,7 +22,11 @@ struct program_client_settings {
bool allow_root:1;
bool debug:1;
bool drop_stderr:1;
/* use o_stream_dot */
/* use o_stream_dot, which is mainly useful to make sure that an
unexpectedly closed connection doesn't cause the partial input to
be accepted as valid and complete program input. This is always
enabled for 'net' program clients, which may likely encounter
unexpected connection termination. */
bool use_dotstream:1;
};

Expand Down

0 comments on commit 009cc18

Please sign in to comment.