Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flexible timeouts (for larger messages) #22

Closed
Hocuri opened this issue Jun 8, 2020 · 7 comments · Fixed by #26
Closed

Flexible timeouts (for larger messages) #22

Hocuri opened this issue Jun 8, 2020 · 7 comments · Fixed by #26

Comments

@Hocuri
Copy link
Collaborator

Hocuri commented Jun 8, 2020

For chatmail/core#1383 we need an different timeouts for larger messages.
The options I see are:

  • function to reconfigure the timeout in runtime (@link2xt didn't like this option)
  • a functional-style setting .timeout_extra_time_per_mb( ...3 minutes... )

cc @link2xt @hpk42

@dignifiedquire
Copy link
Collaborator

dignifiedquire commented Jun 8, 2020 via email

@Hocuri
Copy link
Collaborator Author

Hocuri commented Jun 8, 2020

How would you fix chatmail/core#1383 without modifying this library?

@link2xt
Copy link
Collaborator

link2xt commented Jun 8, 2020

@dignifiedquire A timeout should measure the time between last byte sent and OK received. It is impossible to achieve this by adding a timeout for the whole send operation. Waiting for server response happens inside the library.

@Hocuri
Copy link
Collaborator Author

Hocuri commented Jun 9, 2020

So @link2xt @dignifiedquire which of the options would you say is better? Or something else?

  • function to reconfigure the timeout in runtime (@link2xt didn't like this option)
  • a functional-style setting .timeout_extra_time_per_mb( ...3 minutes... )

@dignifiedquire
Copy link
Collaborator

I don't think mapping timeouts to message size belongs in this library. So what I would prefer is something like

  • send_with_timeout(msg, Duration::from_secs(5).await which allows specifying for the specific message what timeout to use

@link2xt
Copy link
Collaborator

link2xt commented Jun 9, 2020

send_with_timeout looks good to me, not storing the timeout inside the library is nice.

@link2xt
Copy link
Collaborator

link2xt commented Jun 14, 2020

Here is the list of timeouts: https://tools.ietf.org/html/rfc5321#section-4.5.3.2

We are interested in DATA Termination timeout here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants