mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[TCPIP]
- Add missing reference for lwIP on listeners svn path=/trunk/; revision=59413
This commit is contained in:
parent
2ef5916526
commit
16f15f2195
1 changed files with 3 additions and 1 deletions
|
@ -618,9 +618,11 @@ NTSTATUS DispTdiListen(
|
||||||
Connection->AddressFile->Protocol );
|
Connection->AddressFile->Protocol );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( NT_SUCCESS(Status) )
|
if( NT_SUCCESS(Status) ) {
|
||||||
|
ReferenceObject(Connection->AddressFile->Listener);
|
||||||
Status = TCPListen( Connection->AddressFile->Listener, 1024 );
|
Status = TCPListen( Connection->AddressFile->Listener, 1024 );
|
||||||
/* BACKLOG */
|
/* BACKLOG */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( NT_SUCCESS(Status) ) {
|
if( NT_SUCCESS(Status) ) {
|
||||||
|
|
Loading…
Reference in a new issue