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

/dovecot/src/lib-smtp/
H A Dsmtp-reply-parser.c81 string_t *strbuf; member in struct:smtp_reply_parser
115 parser->strbuf = str_new(default_pool, 128);
125 str_free(&parser->strbuf);
145 str_truncate(parser->strbuf, 0);
166 if (str_len(parser->strbuf) + (parser->cur-first) > 3)
169 str_append_n(parser->strbuf, first, parser->cur - first);
172 if (str_len(parser->strbuf) != 3)
174 p = str_data(parser->strbuf);
178 str_truncate(parser->strbuf, 0);
192 str_len(parser->strbuf)) > parse
[all...]

Completed in 11 milliseconds