mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[TCPIP] Return the SubProcessTag when enumerating connections with owner class
This commit is contained in:
parent
d98001de17
commit
96985e0746
1 changed files with 2 additions and 2 deletions
|
@ -251,8 +251,8 @@ TDI_STATUS InfoTdiQueryGetConnectionTcpTable(PADDRESS_FILE AddrFile,
|
|||
{
|
||||
if (Class == TcpUdpClassOwner)
|
||||
{
|
||||
/* FIXME */
|
||||
RtlZeroMemory(&TcpRow.OwningModuleInfo[0], sizeof(TcpRow.OwningModuleInfo));
|
||||
TcpRow.OwningModuleInfo[0] = (ULONG_PTR)AddrFile->SubProcessTag;
|
||||
}
|
||||
|
||||
Status = InfoCopyOut( (PCHAR)&TcpRow, Size,
|
||||
|
@ -295,8 +295,8 @@ TDI_STATUS InfoTdiQueryGetConnectionUdpTable(PADDRESS_FILE AddrFile,
|
|||
UdpRow.dwFlags = 0; /* FIXME */
|
||||
if (Class == TcpUdpClassOwner)
|
||||
{
|
||||
/* FIXME */
|
||||
RtlZeroMemory(&UdpRow.OwningModuleInfo[0], sizeof(UdpRow.OwningModuleInfo));
|
||||
UdpRow.OwningModuleInfo[0] = (ULONG_PTR)AddrFile->SubProcessTag;
|
||||
}
|
||||
|
||||
Status = InfoCopyOut( (PCHAR)&UdpRow,
|
||||
|
|
Loading…
Reference in a new issue