Lines Matching defs:next_state
1270 enum smtp_session_state next_state;
1282 next_state = s->state;
1327 next_state = smtp_prepare_helo(s, &tx_buf_len, pcb);
1335 next_state = smtp_prepare_auth_or_mail(s, &tx_buf_len);
1344 next_state = smtp_prepare_mail(s, &tx_buf_len);
1353 next_state = smtp_prepare_auth_login_uname(s, &tx_buf_len);
1362 next_state = smtp_prepare_auth_login_pass(s, &tx_buf_len);
1371 next_state = smtp_prepare_rcpt(s, &tx_buf_len);
1380 next_state = SMTP_DATA;
1387 next_state = smtp_prepare_header(s, &tx_buf_len);
1397 next_state = smtp_prepare_quit(s, &tx_buf_len);
1408 if (s->state == next_state) {
1426 smtp_state_str[s->state], smtp_state_str[next_state]));
1427 s->state = next_state;
1428 if (next_state == SMTP_BODY) {
1431 } else if (next_state == SMTP_CLOSED) {