From ced840640220cff14f02a78420a343f830ee09b6 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 10 Oct 2006 07:37:03 +0000 Subject: r19218: With the new RPC server infrastructure all backend functions are filled, at least with dummy routines. We need a way to indicate that we do not support a call, so that srv_pipe_hnd.c can return the DCE level RNG_ERROR. This flag can be set in the backend routines for this one. I'll change pidl to generate code to "return False" in srv_lsa.c if this flag is set. Volker (This used to be commit 5260657664caf9546d324a81c392f0d9e8532d58) --- source3/include/ntdomain.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3/include/ntdomain.h') diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index 0114df0e2d..2108520b15 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -257,6 +257,12 @@ typedef struct pipes_struct { */ BOOL bad_handle_fault_state; + + /* + * Set to true when the backend does not support a call. + */ + + BOOL rng_fault_state; /* * Set to RPC_BIG_ENDIAN when dealing with big-endian PDU's -- cgit