summaryrefslogtreecommitdiffstats
path: root/source/utils/net.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/utils/net.h')
-rw-r--r--source/utils/net.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/source/utils/net.h b/source/utils/net.h
index c67786cf9e3..a2df6596b47 100644
--- a/source/utils/net.h
+++ b/source/utils/net.h
@@ -32,7 +32,6 @@ typedef struct copy_clistate {
struct cli_state *cli_share_dst;
char *cwd;
uint16 attribute;
- int mode;
}copy_clistate;
/* INCLUDE FILES */
@@ -98,3 +97,16 @@ extern struct in_addr opt_dest_ip;
extern const char *share_type[];
+/* Structure for mapping accounts to groups */
+/* Array element is the group rid */
+typedef struct _groupmap {
+ uint32 rid;
+ uint32 gidNumber;
+ fstring sambaSID;
+ fstring group_dn;
+} GROUPMAP;
+
+typedef struct _accountmap {
+ uint32 rid;
+ fstring cn;
+} ACCOUNTMAP;