Hans Leidekker : inetcomm: Add an implementation of IPOP3Transport:: CommandSTAT.

Alexandre Julliard julliard at winehq.org
Fri Oct 31 09:24:44 CDT 2008


Module: wine
Branch: master
Commit: f136c22b614e18c4d93d6ec751398fe1d6575b3b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f136c22b614e18c4d93d6ec751398fe1d6575b3b

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Fri Oct 31 13:52:31 2008 +0100

inetcomm: Add an implementation of IPOP3Transport::CommandSTAT.

---

 dlls/inetcomm/pop3transport.c |   36 ++++++++++++++++++++++++++++++++++--
 1 files changed, 34 insertions(+), 2 deletions(-)

diff --git a/dlls/inetcomm/pop3transport.c b/dlls/inetcomm/pop3transport.c
index 09a60bc..a26a3b9 100644
--- a/dlls/inetcomm/pop3transport.c
+++ b/dlls/inetcomm/pop3transport.c
@@ -97,6 +97,32 @@ static void POP3Transport_CallbackRecvLISTResp(IInternetTransport *iface, char *
     InternetTransport_ReadLine(&This->InetTransport, POP3Transport_CallbackProcessLISTResp);
 }
 
+static void POP3Transport_CallbackProcessSTATResp(IInternetTransport *iface, char *pBuffer, int cbBuffer)
+{
+    POP3Transport *This = (POP3Transport *)iface;
+    POP3RESPONSE response;
+    HRESULT hr;
+
+    TRACE("\n");
+
+    hr = POP3Transport_ParseResponse(This, pBuffer, &response);
+    if (FAILED(hr))
+    {
+        /* FIXME: handle error */
+        return;
+    }
+
+    IPOP3Callback_OnResponse((IPOP3Callback *)This->InetTransport.pCallback, &response);
+}
+
+static void POP3Transport_CallbackRecvSTATResp(IInternetTransport *iface, char *pBuffer, int cbBuffer)
+{
+    POP3Transport *This = (POP3Transport *)iface;
+
+    TRACE("\n");
+    InternetTransport_ReadLine(&This->InetTransport, POP3Transport_CallbackProcessSTATResp);
+}
+
 static void POP3Transport_CallbackProcessPASSResp(IInternetTransport *iface, char *pBuffer, int cbBuffer)
 {
     POP3Transport *This = (POP3Transport *)iface;
@@ -407,8 +433,14 @@ static HRESULT WINAPI POP3Transport_CommandQUIT(IPOP3Transport *iface)
 
 static HRESULT WINAPI POP3Transport_CommandSTAT(IPOP3Transport *iface)
 {
-    FIXME("()\n");
-    return E_NOTIMPL;
+    static char stat[] = "STAT\r\n";
+    POP3Transport *This = (POP3Transport *)iface;
+
+    TRACE("\n");
+
+    This->command = POP3_STAT;
+    InternetTransport_DoCommand(&This->InetTransport, stat, POP3Transport_CallbackRecvSTATResp);
+    return S_OK;
 }
 
 static HRESULT WINAPI POP3Transport_CommandNOOP(IPOP3Transport *iface)




More information about the wine-cvs mailing list