[NTOS:LPC]: Improve the lisibility of some functions:
[reactos.git] / reactos / ntoskrnl / lpc / listen.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/lpc/listen.c
5 * PURPOSE: Local Procedure Call: Listening
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <ntoskrnl.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* PUBLIC FUNCTIONS **********************************************************/
16
17 /*
18 * @implemented
19 */
20 NTSTATUS
21 NTAPI
22 NtListenPort(IN HANDLE PortHandle,
23 OUT PPORT_MESSAGE ConnectMessage)
24 {
25 NTSTATUS Status;
26
27 PAGED_CODE();
28 LPCTRACE(LPC_LISTEN_DEBUG, "Handle: %p\n", PortHandle);
29
30 /* Wait forever for a connection request */
31 for (;;)
32 {
33 /* Do the wait */
34 Status = NtReplyWaitReceivePort(PortHandle,
35 NULL,
36 NULL,
37 ConnectMessage);
38
39 /* Accept only LPC_CONNECTION_REQUEST requests */
40 if ((Status != STATUS_SUCCESS) ||
41 (LpcpGetMessageType(ConnectMessage) == LPC_CONNECTION_REQUEST))
42 {
43 /* Break out */
44 break;
45 }
46 }
47
48 /* Return status */
49 return Status;
50 }
51
52 /* EOF */