diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-10-10 07:37:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:22 -0500 |
commit | ced840640220cff14f02a78420a343f830ee09b6 (patch) | |
tree | 8f748e37ac6ca906ffdfda55285fccefe5db7dd3 | |
parent | ed088e5ee0c6589171535b3c0cf9064a2d5f6792 (diff) | |
download | samba-ced840640220cff14f02a78420a343f830ee09b6.tar.gz samba-ced840640220cff14f02a78420a343f830ee09b6.tar.bz2 samba-ced840640220cff14f02a78420a343f830ee09b6.zip |
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)
-rw-r--r-- | source3/include/ntdomain.h | 6 |
1 files changed, 6 insertions, 0 deletions
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 |