Searched defs:dot_input (Results 1 - 6 of 6) sorted by relevance

/dovecot/src/lib-smtp/
H A Dsmtp-server-cmd-data.c350 struct istream *dot_input; local
373 dot_input = smtp_command_parse_data_with_dot(conn->smtp_parser);
374 cmd_data_start_input(cmd, dot_input);
375 i_stream_unref(&dot_input);
H A Dtest-smtp-client-errors.c43 struct istream *dot_input; member in struct:server_connection
2601 if (conn->dot_input == NULL)
2602 conn->dot_input = i_stream_create_dot(conn->conn.input, TRUE);
2603 while ((ret=i_stream_read_more(conn->dot_input,
2609 i_stream_skip(conn->dot_input, size);
2614 if (conn->dot_input->stream_errno != 0) {
2616 i_stream_get_error(conn->dot_input));
2713 i_stream_unref(&conn->dot_input);
H A Dtest-smtp-submit.c1292 struct istream *dot_input; member in struct:_successful_delivery_server
1315 if (ctx->dot_input == NULL) {
1318 ctx->dot_input = i_stream_create_dot(conn->conn.input, TRUE);
1329 res = o_stream_send_istream(ctx->file, ctx->dot_input);
1405 i_stream_unref(&ctx->dot_input);
/dovecot/src/lmtp/
H A Dclient.h41 struct istream *dot_input; member in struct:client
/dovecot/src/lib-program-client/
H A Dprogram-client-private.h48 struct istream *dot_input; member in struct:program_client
/dovecot/src/lib-storage/index/pop3c/
H A Dpop3c-client.c80 struct istream *dot_input; member in struct:pop3c_client
168 i_assert(client->dot_input == NULL);
170 client->dot_input = cmd->input;
713 while ((ret = i_stream_read(client->dot_input)) > 0 || ret == -2) {
714 i_stream_skip(client->dot_input,
715 i_stream_get_data_size(client->dot_input));
721 if (client->dot_input->stream_errno == 0)
723 client->dot_input = NULL;
776 if (client->dot_input != NULL) {

Completed in 36 milliseconds