Commit 7b0bbc4d authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

inetcomm: Add an implementation of ISMTPTransport2::CommandRSET.

parent a48b5387
......@@ -833,8 +833,12 @@ static HRESULT WINAPI SMTPTransport_CommandQUIT(ISMTPTransport2 *iface)
static HRESULT WINAPI SMTPTransport_CommandRSET(ISMTPTransport2 *iface)
{
FIXME("()\n");
return E_NOTIMPL;
SMTPTransport *This = (SMTPTransport *)iface;
TRACE("()\n");
return InternetTransport_DoCommand(&This->InetTransport, "RSET\n",
SMTPTransport_CallbackReadResponseDoNothing);
}
static HRESULT WINAPI SMTPTransport_CommandDATA(ISMTPTransport2 *iface)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment