Lines Matching refs:out
45 smtp_reply_write(string_t *out, const struct smtp_reply *reply)
57 str_append(out, prefix);
59 str_append_c(out, ' ');
60 str_append(out, enh_code);
62 str_append(out, " \r\n");
68 str_append(out, prefix);
70 str_append_c(out, ' ');
72 str_append_c(out, '-');
74 str_append(out, enh_code);
75 str_append_c(out, ' ');
77 str_append(out, *lines);
78 str_append(out, "\r\n");
83 void smtp_reply_write_one_line(string_t *out, const struct smtp_reply *reply)
91 str_printfa(out, "%03u", reply->status);
93 str_append_c(out, ' ');
94 str_append(out, enh_code);
99 str_append_c(out, ' ');
100 str_append(out, *lines);