diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2026-02-13 03:56:13 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2026-02-13 03:56:13 +0000 |
| commit | 83a388d5d8230dd6c15ecea31cf89f74248bc286 (patch) | |
| tree | 0193a4c41614a481b373385aad6864d043f3c22d /src/qmail-remote/qmail-remote.c | |
| parent | f38c40f9bb3033dce22b4035df87695440660e69 (diff) | |
| download | smtpd-starttls-proxy-83a388d5d8230dd6c15ecea31cf89f74248bc286.tar.gz | |
Treat 0 timeouts as infinite
Diffstat (limited to 'src/qmail-remote/qmail-remote.c')
| -rw-r--r-- | src/qmail-remote/qmail-remote.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qmail-remote/qmail-remote.c b/src/qmail-remote/qmail-remote.c index a644352..8d3f095 100644 --- a/src/qmail-remote/qmail-remote.c +++ b/src/qmail-remote/qmail-remote.c @@ -69,11 +69,11 @@ static int smtp_start (buffer *in, buffer *out, char const *helohost, unsigned i buffer_putsnoflush(out, helohost) ; buffer_putnoflush(out, "\r\n", 2) ; - tain_addsec_g(&deadline, timeout) ; + qdeadline(&deadline, timeout) ; if (!buffer_timed_flush_g(out, &deadline)) qmailr_tempusys("send ", "EHLO", " to ", fmtip) ; - tain_addsec_g(&deadline, timeout) ; + qdeadline(&deadline, timeout) ; for (;;) { unsigned int code = 250 ; @@ -107,7 +107,7 @@ static void attempt_smtp (int fd, char const *ip, int is6, unsigned int timeoutc tain deadline ; char line[1024] ; buffer_putsnoflush(&out, "STARTTLS\r\n") ; - tain_addsec_g(&deadline, timeoutremote) ; + qdeadline(&deadline, timeoutremote) ; if (!buffer_timed_flush_g(&out, &deadline)) qmailr_tempusys("send ", "STARTTLS", " to ", fmtip) ; r = qmailr_smtp_read_answer(&in, line, 1024, timeoutremote) ; if (r == -1) qmailr_tempusys("read from ", fmtip) ; @@ -211,7 +211,7 @@ int main (int argc, char const *const *argv) if (qmailr_tcpto_match(ip, 1)) continue ; fd = socket_tcp6() ; if (fd == -1) qmailr_tempusys("create socket") ; - tain_addsec_g(&deadline, timeoutconnect) ; + qdeadline(&deadline, timeoutconnect) ; if (!socket_deadlineconnstamp6_g(fd, ip, port, &deadline)) { if (!qmailr_tcpto_update(ip, 1, errno == ETIMEDOUT)) @@ -233,7 +233,7 @@ int main (int argc, char const *const *argv) if (qmailr_tcpto_match(ip, 0)) continue ; fd = socket_tcp4() ; if (fd == -1) qmailr_tempusys("create socket") ; - tain_addsec_g(&deadline, timeoutconnect) ; + qdeadline(&deadline, timeoutconnect) ; if (!socket_deadlineconnstamp4_g(fd, ip, port, &deadline)) { if (!qmailr_tcpto_update(ip, 0, errno == ETIMEDOUT)) |
