From d23a1c1ff8279bdfce7ee48ecca2e6862690448a Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 19 Jul 2018 07:32:08 +0200 Subject: librpc: add binding handle support for [smb1] This will be used to force smb1. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13308 Signed-off-by: Stefan Metzmacher Reviewed-by: Alexander Bokovoy (cherry picked from commit 062b518cabd9fb5f72f96cdf400c978c0b844619) --- librpc/rpc/binding.c | 1 + librpc/rpc/rpc_common.h | 2 ++ 2 files changed, 3 insertions(+) (limited to 'librpc') diff --git a/librpc/rpc/binding.c b/librpc/rpc/binding.c index 63ba682a577..aa8cc6b46c6 100644 --- a/librpc/rpc/binding.c +++ b/librpc/rpc/binding.c @@ -103,6 +103,7 @@ static const struct ncacn_option { {"print", DCERPC_DEBUG_PRINT_BOTH}, {"padcheck", DCERPC_DEBUG_PAD_CHECK}, {"bigendian", DCERPC_PUSH_BIGENDIAN}, + {"smb1", DCERPC_SMB1}, {"smb2", DCERPC_SMB2}, {"ndr64", DCERPC_NDR64}, {"packet", DCERPC_PACKET}, diff --git a/librpc/rpc/rpc_common.h b/librpc/rpc/rpc_common.h index d6b2d5dbc05..cdc9fe8ac88 100644 --- a/librpc/rpc/rpc_common.h +++ b/librpc/rpc/rpc_common.h @@ -108,6 +108,8 @@ struct dcerpc_binding; #define DCERPC_PACKET (1<<26) +#define DCERPC_SMB1 (1<<27) + /* The following definitions come from ../librpc/rpc/dcerpc_error.c */ const char *dcerpc_errstr(TALLOC_CTX *mem_ctx, uint32_t fault_code); -- cgit v1.2.1