00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#include "lpcp.h"
00022
00023
#ifdef ALLOC_PRAGMA
00024
#pragma alloc_text(PAGE,NtListenPort)
00025
#endif
00026
00027
00028
NTSTATUS
00029 NtListenPort (
00030 IN HANDLE PortHandle,
00031 OUT PPORT_MESSAGE ConnectionRequest
00032 )
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059 {
00060
NTSTATUS Status;
00061
00062
PAGED_CODE();
00063
00064
00065
00066
00067
00068
while (
TRUE) {
00069
00070
Status =
NtReplyWaitReceivePort(
PortHandle,
00071
NULL,
00072
NULL,
00073 ConnectionRequest );
00074
00075
00076
00077
00078
00079
00080
00081
00082
try {
00083
00084
if ((
Status != STATUS_SUCCESS) ||
00085 ((ConnectionRequest->u2.s2.Type & ~LPC_KERNELMODE_MESSAGE) == LPC_CONNECTION_REQUEST)) {
00086
00087
break;
00088 }
00089
00090 } except(
EXCEPTION_EXECUTE_HANDLER ) {
00091
00092
Status = GetExceptionCode();
00093
00094
break;
00095 }
00096 }
00097
00098
00099
00100
00101
00102
return Status;
00103 }