diff options
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ads_struct.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/libads/ads_struct.c b/source3/libads/ads_struct.c index aef35ad822..e01a36cbae 100644 --- a/source3/libads/ads_struct.c +++ b/source3/libads/ads_struct.c @@ -151,6 +151,20 @@ ADS_STRUCT *ads_init(const char *realm, return ads; } +/**************************************************************** +****************************************************************/ + +bool ads_set_sasl_wrap_flags(ADS_STRUCT *ads, int flags) +{ + if (!ads) { + return false; + } + + ads->auth.flags = flags; + + return true; +} + /* free the memory used by the ADS structure initialized with 'ads_init(...)' */ |