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

Add pipelining extension support #54

Merged
merged 3 commits into from
Jan 18, 2023
Merged

Add pipelining extension support #54

merged 3 commits into from
Jan 18, 2023

Conversation

link2xt
Copy link
Collaborator

@link2xt link2xt commented Jan 6, 2023

Closes #48

@link2xt
Copy link
Collaborator Author

link2xt commented Jan 6, 2023

This is not as useful as it could be because of incorrect buffering. We should attach BufWriter on top and only flush after sending DATA. But this is for another PR.

Copy link
Collaborator

@Hocuri Hocuri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM as far as I can say (I'm not familiar with this code)

@@ -238,12 +238,27 @@ impl<S: Connector + Write + Read + Unpin> InnerClient<S> {
self.command_with_timeout(command, timeout.as_ref()).await
}

/// Sends the given SMTP command to the server without waiting for response.
pub async fn send_command<C: Display>(self: Pin<&mut Self>, command: C) -> Result<(), Error> {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that this should be called send_command_no_timeout, like read_response_no_timeout (read_response uses self.timeout)

Comment on lines 242 to 244
pub async fn send_command<C: Display>(self: Pin<&mut Self>, command: C) -> Result<(), Error> {
self.write(command.to_string().as_bytes()).await
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This function is actually never used (or, only in send_command_with_timeout where it could be inlined), but you added it for completeness?

@link2xt link2xt merged commit 9835971 into master Jan 18, 2023
@link2xt link2xt deleted the link2xt/pipelining branch January 18, 2023 13:36
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 this pull request may close these issues.

Pipeline MAIL FROM: and RCPT TO: commands.
2 participants