-
Notifications
You must be signed in to change notification settings - Fork 13
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
Conversation
This is not as useful as it could be because of incorrect buffering. We should attach |
There was a problem hiding this 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)
src/smtp/client/inner.rs
Outdated
@@ -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> { |
There was a problem hiding this comment.
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
)
src/smtp/client/inner.rs
Outdated
pub async fn send_command<C: Display>(self: Pin<&mut Self>, command: C) -> Result<(), Error> { | ||
self.write(command.to_string().as_bytes()).await | ||
} |
There was a problem hiding this comment.
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?
Closes #48