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 committed Jan 26, 2018
1 parent 4427c6a commit e9853e8
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 e9853e8

Please sign in to comment.