From a8332b91ef461309121a909a59b1c1b46d8065c9 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 24 Jun 2008 10:34:16 +0200 Subject: net: add basic support for sealed RPC connections (using NET_FLAGS_SEAL). Guenther (This used to be commit 7541a0103ad22000e94ffc6d057ffd5d33d1a930) --- source3/utils/net.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/utils/net.h') diff --git a/source3/utils/net.h b/source3/utils/net.h index aa4f3dbb6d..941172a8c1 100644 --- a/source3/utils/net.h +++ b/source3/utils/net.h @@ -141,6 +141,8 @@ enum netdom_domain_t { ND_TYPE_NT4, ND_TYPE_AD }; #define NET_FLAGS_PDC 0x00000008 /* PDC only */ #define NET_FLAGS_ANONYMOUS 0x00000010 /* use an anonymous connection */ #define NET_FLAGS_NO_PIPE 0x00000020 /* don't open an RPC pipe */ +#define NET_FLAGS_SIGN 0x00000040 /* sign RPC connection */ +#define NET_FLAGS_SEAL 0x00000080 /* seal RPC connection */ /* net share operation modes */ #define NET_MODE_SHARE_MIGRATE 1 -- cgit