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
d80d9b82
Commit
d80d9b82
authored
Nov 04, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Add an implementation of IPOP3Transport::CommandPASS.
parent
954945cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
pop3transport.c
dlls/inetcomm/pop3transport.c
+19
-2
No files found.
dlls/inetcomm/pop3transport.c
View file @
d80d9b82
...
...
@@ -439,8 +439,25 @@ static HRESULT WINAPI POP3Transport_CommandUSER(IPOP3Transport *iface, LPSTR use
static
HRESULT
WINAPI
POP3Transport_CommandPASS
(
IPOP3Transport
*
iface
,
LPSTR
password
)
{
FIXME
(
"(%s)
\n
"
,
password
);
return
E_NOTIMPL
;
static
char
pass
[]
=
"PASS "
;
POP3Transport
*
This
=
(
POP3Transport
*
)
iface
;
char
*
command
;
int
len
;
TRACE
(
"(%p)
\n
"
,
password
);
len
=
sizeof
(
pass
)
+
strlen
(
password
)
+
2
;
/* "\r\n" */
command
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
);
strcpy
(
command
,
pass
);
strcat
(
command
,
password
);
strcat
(
command
,
"
\r\n
"
);
This
->
command
=
POP3_PASS
;
InternetTransport_DoCommand
(
&
This
->
InetTransport
,
command
,
POP3Transport_CallbackRecvPASSResp
);
HeapFree
(
GetProcessHeap
(),
0
,
command
);
return
S_OK
;
}
static
HRESULT
WINAPI
POP3Transport_CommandLIST
(
...
...
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