Commit b7a67eb3 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

hnetcfg: Store port number for INetFwOpenPort.

parent 341ddeb3
...@@ -40,6 +40,7 @@ typedef struct fw_port ...@@ -40,6 +40,7 @@ typedef struct fw_port
LONG refs; LONG refs;
BSTR name; BSTR name;
NET_FW_IP_PROTOCOL protocol; NET_FW_IP_PROTOCOL protocol;
LONG port;
} fw_port; } fw_port;
static inline fw_port *impl_from_INetFwOpenPort( INetFwOpenPort *iface ) static inline fw_port *impl_from_INetFwOpenPort( INetFwOpenPort *iface )
...@@ -253,8 +254,9 @@ static HRESULT WINAPI fw_port_put_Port( ...@@ -253,8 +254,9 @@ static HRESULT WINAPI fw_port_put_Port(
{ {
fw_port *This = impl_from_INetFwOpenPort( iface ); fw_port *This = impl_from_INetFwOpenPort( iface );
FIXME("%p %d\n", This, portNumber); TRACE("%p %d\n", This, portNumber);
return E_NOTIMPL; This->port = portNumber;
return S_OK;
} }
static HRESULT WINAPI fw_port_get_Scope( static HRESULT WINAPI fw_port_get_Scope(
...@@ -368,6 +370,7 @@ HRESULT NetFwOpenPort_create( IUnknown *pUnkOuter, LPVOID *ppObj ) ...@@ -368,6 +370,7 @@ HRESULT NetFwOpenPort_create( IUnknown *pUnkOuter, LPVOID *ppObj )
fp->refs = 1; fp->refs = 1;
fp->name = NULL; fp->name = NULL;
fp->protocol = NET_FW_IP_PROTOCOL_TCP; fp->protocol = NET_FW_IP_PROTOCOL_TCP;
fp->port = 0;
*ppObj = &fp->INetFwOpenPort_iface; *ppObj = &fp->INetFwOpenPort_iface;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment