Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
341ddeb3
Commit
341ddeb3
authored
Nov 09, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hnetcfg: Store protocol for INetFwOpenPort.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0b33b80f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
port.c
dlls/hnetcfg/port.c
+9
-2
No files found.
dlls/hnetcfg/port.c
View file @
341ddeb3
...
@@ -39,6 +39,7 @@ typedef struct fw_port
...
@@ -39,6 +39,7 @@ typedef struct fw_port
INetFwOpenPort
INetFwOpenPort_iface
;
INetFwOpenPort
INetFwOpenPort_iface
;
LONG
refs
;
LONG
refs
;
BSTR
name
;
BSTR
name
;
NET_FW_IP_PROTOCOL
protocol
;
}
fw_port
;
}
fw_port
;
static
inline
fw_port
*
impl_from_INetFwOpenPort
(
INetFwOpenPort
*
iface
)
static
inline
fw_port
*
impl_from_INetFwOpenPort
(
INetFwOpenPort
*
iface
)
...
@@ -227,8 +228,13 @@ static HRESULT WINAPI fw_port_put_Protocol(
...
@@ -227,8 +228,13 @@ static HRESULT WINAPI fw_port_put_Protocol(
{
{
fw_port
*
This
=
impl_from_INetFwOpenPort
(
iface
);
fw_port
*
This
=
impl_from_INetFwOpenPort
(
iface
);
FIXME
(
"%p %u
\n
"
,
This
,
ipProtocol
);
TRACE
(
"%p %u
\n
"
,
This
,
ipProtocol
);
return
E_NOTIMPL
;
if
(
ipProtocol
!=
NET_FW_IP_PROTOCOL_TCP
&&
ipProtocol
!=
NET_FW_IP_PROTOCOL_UDP
)
return
E_INVALIDARG
;
This
->
protocol
=
ipProtocol
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
fw_port_get_Port
(
static
HRESULT
WINAPI
fw_port_get_Port
(
...
@@ -361,6 +367,7 @@ HRESULT NetFwOpenPort_create( IUnknown *pUnkOuter, LPVOID *ppObj )
...
@@ -361,6 +367,7 @@ HRESULT NetFwOpenPort_create( IUnknown *pUnkOuter, LPVOID *ppObj )
fp
->
INetFwOpenPort_iface
.
lpVtbl
=
&
fw_port_vtbl
;
fp
->
INetFwOpenPort_iface
.
lpVtbl
=
&
fw_port_vtbl
;
fp
->
refs
=
1
;
fp
->
refs
=
1
;
fp
->
name
=
NULL
;
fp
->
name
=
NULL
;
fp
->
protocol
=
NET_FW_IP_PROTOCOL_TCP
;
*
ppObj
=
&
fp
->
INetFwOpenPort_iface
;
*
ppObj
=
&
fp
->
INetFwOpenPort_iface
;
...
...
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