summaryrefslogtreecommitdiffstats
path: root/source/include/rpc_dce.h
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-11-15 22:11:10 +0000
committerLuke Leighton <lkcl@samba.org>1999-11-15 22:11:10 +0000
commit25c70e3c984c4fed19763ed405741e83fe14f87e (patch)
tree566fcfeb911d5e6fc7684b8d838733b50c01b8ff /source/include/rpc_dce.h
parentcc2ce2b755b12cb3d97522aaee69b93309571abc (diff)
downloadsamba-25c70e3c984c4fed19763ed405741e83fe14f87e.tar.gz
samba-25c70e3c984c4fed19763ed405741e83fe14f87e.tar.xz
samba-25c70e3c984c4fed19763ed405741e83fe14f87e.zip
- added DCE/RPC "fault" PDU support.
- disabled (AGAIN) the GETDC "if (MAILSLOT\NTLOGON)" code that will get NT5rc2 to work but WILL break win95 (AGAIN). this needs _not_ to be re-enabled but to be replaced with a better mechanism. - added SMBwrite support (note: SMBwriteX already existed) as NT5rc2 is sending DCE/RPC over SMBwrite not SMBwriteX.
Diffstat (limited to 'source/include/rpc_dce.h')
-rw-r--r--source/include/rpc_dce.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/include/rpc_dce.h b/source/include/rpc_dce.h
index 3b2b3071d25..52544ac6422 100644
--- a/source/include/rpc_dce.h
+++ b/source/include/rpc_dce.h
@@ -43,6 +43,7 @@ enum RPC_PKT_TYPE
/* DCE/RPC flags */
#define RPC_FLG_FIRST 0x01
#define RPC_FLG_LAST 0x02
+#define RPC_FLG_NOCALL 0x20
/* NTLMSSP message types */
enum NTLM_MESSAGE_TYPE
@@ -127,6 +128,14 @@ typedef struct rpc_hdr_resp_info
} RPC_HDR_RESP;
+/* RPC_HDR_FAULT - ms fault rpc header */
+typedef struct rpc_hdr_fault_info
+{
+ uint32 status;
+ uint32 reserved; /* 0x0000 0000 */
+
+} RPC_HDR_FAULT;
+
/* this seems to be the same string name depending on the name of the pipe,
* but is more likely to be linked to the interface name
* "srvsvc", "\\PIPE\\ntsvcs"