e_debug(conn->conn.event, "auth input: %s",
t_strarray_join(args, "\t"));
+ io_loop_stop(conn->ioloop);
+
struct auth_master_reply mreply = {
.reply = args[0],
.args = args + 2,
const char *const *args = reply->args;
unsigned int i, len;
- io_loop_stop(lookup->conn->ioloop);
-
lookup->return_value = parse_reply(lookup, reply->reply, args);
len = str_array_length(args);
const char *const *args = reply->args;
timeout_reset(ctx->conn->to);
- io_loop_stop(ctx->conn->ioloop);
if (strcmp(reply->reply, "DONE") == 0) {
if (args[0] != NULL && strcmp(args[0], "fail") == 0) {
else if (args[0] == NULL || str_to_uint(args[0], &ctx->count) < 0)
ctx->failed = TRUE;
- io_loop_stop(ctx->conn->ioloop);
return 1;
}