diff options
author | Günther Deschner <gd@samba.org> | 2010-09-11 01:23:01 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-15 08:32:58 +0200 |
commit | 3fe966d28003f8a09a29c9a9051672e0e066e7b6 (patch) | |
tree | 74abc14c174de554a1c4c2b0e57c9663f44c7f2c /source3/lib/netapi | |
parent | 26672e228a6eb327f5810ee1b6adb8b4bb39d5ec (diff) | |
download | samba-3fe966d28003f8a09a29c9a9051672e0e066e7b6.tar.gz samba-3fe966d28003f8a09a29c9a9051672e0e066e7b6.tar.bz2 samba-3fe966d28003f8a09a29c9a9051672e0e066e7b6.zip |
s3-libnetapi: add DS request flags to public header.
Guenther
Diffstat (limited to 'source3/lib/netapi')
-rw-r--r-- | source3/lib/netapi/netapi.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source3/lib/netapi/netapi.h b/source3/lib/netapi/netapi.h index 99f878b84d..9e1549df0e 100644 --- a/source3/lib/netapi/netapi.h +++ b/source3/lib/netapi/netapi.h @@ -1321,6 +1321,27 @@ struct NETLOGON_INFO_4 { #define NETLOGON_CONTROL_SET_DBFLAG ( 0x0000FFFE ) #define NETLOGON_CONTROL_BREAKPOINT ( 0x0000FFFF ) +#define DS_FORCE_REDISCOVERY ( 0x00000001 ) +#define DS_DIRECTORY_SERVICE_REQUIRED ( 0x00000010 ) +#define DS_DIRECTORY_SERVICE_PREFERRED ( 0x00000020 ) +#define DS_GC_SERVER_REQUIRED ( 0x00000040 ) +#define DS_PDC_REQUIRED ( 0x00000080 ) +#define DS_BACKGROUND_ONLY ( 0x00000100 ) +#define DS_IP_REQUIRED ( 0x00000200 ) +#define DS_KDC_REQUIRED ( 0x00000400 ) +#define DS_TIMESERV_REQUIRED ( 0x00000800 ) +#define DS_WRITABLE_REQUIRED ( 0x00001000 ) +#define DS_GOOD_TIMESERV_PREFERRED ( 0x00002000 ) +#define DS_AVOID_SELF ( 0x00004000 ) +#define DS_ONLY_LDAP_NEEDED ( 0x00008000 ) +#define DS_IS_FLAT_NAME ( 0x00010000 ) +#define DS_IS_DNS_NAME ( 0x00020000 ) +#define DS_TRY_NEXTCLOSEST_SITE ( 0x00040000 ) +#define DS_DIRECTORY_SERVICE_6_REQUIRED ( 0x00080000 ) +#define DS_WEB_SERVICE_REQUIRED ( 0x00100000 ) +#define DS_RETURN_DNS_NAME ( 0x40000000 ) +#define DS_RETURN_FLAT_NAME ( 0x80000000 ) + #endif /* _HEADER_netlogon */ /**************************************************************** |