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,10 +618,12 @@ NTSTATUS DispTdiListen(
|
|||
Connection->AddressFile->Protocol );
|
||||
}
|
||||
|
||||
if( NT_SUCCESS(Status) )
|
||||
if( NT_SUCCESS(Status) ) {
|
||||
ReferenceObject(Connection->AddressFile->Listener);
|
||||
Status = TCPListen( Connection->AddressFile->Listener, 1024 );
|
||||
/* BACKLOG */
|
||||
}
|
||||
}
|
||||
|
||||
if( NT_SUCCESS(Status) ) {
|
||||
Status = TCPAccept
|
||||
|
|
Loading…
Reference in a new issue