summaryrefslogtreecommitdiff
path: root/source3/include/msdfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/msdfs.h')
-rw-r--r--source3/include/msdfs.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/source3/include/msdfs.h b/source3/include/msdfs.h
index 0c2e3c14df..ac054307b5 100644
--- a/source3/include/msdfs.h
+++ b/source3/include/msdfs.h
@@ -28,6 +28,13 @@
#define DFSREF_REFERRAL_SERVER 0x1
#define DFSREF_STORAGE_SERVER 0x2
+/* Referral sizes */
+#define VERSION2_REFERRAL_SIZE 0x16
+#define VERSION3_REFERRAL_SIZE 0x22
+#define REFERRAL_HEADER_SIZE 0x08
+
+/* Maximum number of referrals for each Dfs volume */
+#define MAX_REFERRAL_COUNT 256
struct referral
{
@@ -66,14 +73,9 @@ struct dfs_path
return(dfs_path_error(inbuf,outbuf)); }
#define init_dfsroot(conn, inbuf, outbuf) \
-{ if(*lp_dfsmap(SNUM(conn)) && lp_host_msdfs()) { \
+{ if(lp_msdfs_root(SNUM(conn)) && lp_host_msdfs()) \
SSVAL(outbuf, smb_vwv2, SMB_SHARE_IN_DFS | SMB_SUPPORT_SEARCH_BITS); \
- if(lp_dfsmap_loaded(SNUM(conn))) \
- msdfs_open(False); \
- else { \
- DEBUG(3,("msdfs map database not initialized!\n")); \
- pstrcpy(lp_dfsmap(SNUM(conn)),""); \
- } } }
+}
#else
/* Stub macros */