diff options
author | Gerald W. Carter <jerry@samba.org> | 2008-06-27 10:22:39 -0400 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-06-27 10:26:11 -0400 |
commit | 9ff1ffcbee46257c3b2b13b84c2a539322493190 (patch) | |
tree | 8cafc550e0378e56a44a89787fcfafa708d578e4 /source3/include/ads.h | |
parent | e08943f8d855b85765615b2a231fb65d5788a2a6 (diff) | |
download | samba-9ff1ffcbee46257c3b2b13b84c2a539322493190.tar.gz samba-9ff1ffcbee46257c3b2b13b84c2a539322493190.tar.xz samba-9ff1ffcbee46257c3b2b13b84c2a539322493190.zip |
libads: Add API call to connect to a global catalog server.
Extends ads_connect() to a new call ads_connect_gc() which connects on port
3268 rather than port 389. Also makes ads_try_connect() static and
only used internally to ldap.c
(This used to be commit f4c37dbe2c986fb7bfe510cdff3b4a9fbc06d079)
Diffstat (limited to 'source3/include/ads.h')
-rw-r--r-- | source3/include/ads.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/ads.h b/source3/include/ads.h index d4551765aa0..0d464b2d810 100644 --- a/source3/include/ads.h +++ b/source3/include/ads.h @@ -53,7 +53,9 @@ typedef struct ads_struct { char *realm; char *workgroup; char *ldap_server; - int foreign; /* set to 1 if connecting to a foreign realm */ + int foreign; /* set to 1 if connecting to a foreign + * realm */ + bool gc; /* Is this a global catalog server? */ } server; /* info needed to authenticate */ |