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
954945cd
Commit
954945cd
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::CommandUSER.
parent
7e947879
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 @
954945cd
...
...
@@ -416,8 +416,25 @@ static HRESULT WINAPI POP3Transport_CommandAUTH(IPOP3Transport *iface, LPSTR psz
static
HRESULT
WINAPI
POP3Transport_CommandUSER
(
IPOP3Transport
*
iface
,
LPSTR
username
)
{
FIXME
(
"(%s)
\n
"
,
username
);
return
E_NOTIMPL
;
static
char
user
[]
=
"USER "
;
POP3Transport
*
This
=
(
POP3Transport
*
)
iface
;
char
*
command
;
int
len
;
TRACE
(
"(%s)
\n
"
,
username
);
len
=
sizeof
(
user
)
+
strlen
(
username
)
+
2
;
/* "\r\n" */
command
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
);
strcpy
(
command
,
user
);
strcat
(
command
,
username
);
strcat
(
command
,
"
\r\n
"
);
This
->
command
=
POP3_USER
;
InternetTransport_DoCommand
(
&
This
->
InetTransport
,
command
,
POP3Transport_CallbackRecvUSERResp
);
HeapFree
(
GetProcessHeap
(),
0
,
command
);
return
S_OK
;
}
static
HRESULT
WINAPI
POP3Transport_CommandPASS
(
IPOP3Transport
*
iface
,
LPSTR
password
)
...
...
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