summaryrefslogtreecommitdiff
path: root/source3/libads/ads_struct.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-09-02 21:16:45 +0200
committerGünther Deschner <gd@samba.org>2010-05-20 18:45:59 +0200
commite4bdb7e00e3acdb4e18dafdbe44cd4826acaaeab (patch)
tree06eba77066a872e922895e0a935eff066236279e /source3/libads/ads_struct.c
parent33a156f0c13476f431584492977b0d4c28e4e4fb (diff)
downloadsamba-e4bdb7e00e3acdb4e18dafdbe44cd4826acaaeab.tar.gz
s3-libads: add ads_set_sasl_wrap_flags().
Guenther
Diffstat (limited to 'source3/libads/ads_struct.c')
-rw-r--r--source3/libads/ads_struct.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/libads/ads_struct.c b/source3/libads/ads_struct.c
index aef35ad822e..e01a36cbaeb 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(...)'
*/