Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9b8e2e20
Commit
9b8e2e20
authored
Oct 31, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 31, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Add an implementation of IPOP3Transport::CommandLIST.
parent
567b8cb3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
2 deletions
+34
-2
pop3transport.c
dlls/inetcomm/pop3transport.c
+34
-2
No files found.
dlls/inetcomm/pop3transport.c
View file @
9b8e2e20
...
...
@@ -71,6 +71,32 @@ static HRESULT POP3Transport_ParseResponse(POP3Transport *This, char *pszRespons
return
S_OK
;
}
static
void
POP3Transport_CallbackProcessLISTResp
(
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_CallbackRecvLISTResp
(
IInternetTransport
*
iface
,
char
*
pBuffer
,
int
cbBuffer
)
{
POP3Transport
*
This
=
(
POP3Transport
*
)
iface
;
TRACE
(
"
\n
"
);
InternetTransport_ReadLine
(
&
This
->
InetTransport
,
POP3Transport_CallbackProcessLISTResp
);
}
static
void
POP3Transport_CallbackProcessPASSResp
(
IInternetTransport
*
iface
,
char
*
pBuffer
,
int
cbBuffer
)
{
POP3Transport
*
This
=
(
POP3Transport
*
)
iface
;
...
...
@@ -324,8 +350,14 @@ static HRESULT WINAPI POP3Transport_CommandPASS(IPOP3Transport *iface, LPSTR pas
static
HRESULT
WINAPI
POP3Transport_CommandLIST
(
IPOP3Transport
*
iface
,
POP3CMDTYPE
cmdtype
,
DWORD
dwPopId
)
{
FIXME
(
"(%u, %u)
\n
"
,
cmdtype
,
dwPopId
);
return
E_NOTIMPL
;
static
char
list
[]
=
"LIST
\r\n
"
;
POP3Transport
*
This
=
(
POP3Transport
*
)
iface
;
TRACE
(
"(%u, %u)
\n
"
,
cmdtype
,
dwPopId
);
This
->
command
=
POP3_LIST
;
InternetTransport_DoCommand
(
&
This
->
InetTransport
,
list
,
POP3Transport_CallbackRecvLISTResp
);
return
S_OK
;
}
static
HRESULT
WINAPI
POP3Transport_CommandTOP
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment