From 7b1d6a6a0568a62943877c61d95f6d7bb1fd1d1d Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 2 Aug 2011 13:17:24 +1000 Subject: selftest: test plugin_s4_dc against all ncacn_np tests Changes to the s3 epmapper behaviour seem to have fixed the rest of these tests. Andrew Bartlett --- source3/include/auth.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/include/auth.h') diff --git a/source3/include/auth.h b/source3/include/auth.h index f7422f0600..6721b1f188 100644 --- a/source3/include/auth.h +++ b/source3/include/auth.h @@ -88,6 +88,7 @@ struct auth_context { NTSTATUS (*prepare_gensec)(TALLOC_CTX *mem_ctx, struct gensec_security **gensec_context); NTSTATUS (*gensec_start_mech_by_oid)(struct gensec_security *gensec_context, const char *oid_string); + NTSTATUS (*gensec_start_mech_by_authtype)(struct gensec_security *gensec_context, uint8_t auth_type, uint8_t auth_level); }; typedef struct auth_methods @@ -113,6 +114,7 @@ typedef struct auth_methods NTSTATUS (*prepare_gensec)(TALLOC_CTX *mem_ctx, struct gensec_security **gensec_context); NTSTATUS (*gensec_start_mech_by_oid)(struct gensec_security *gensec_context, const char *oid_string); + NTSTATUS (*gensec_start_mech_by_authtype)(struct gensec_security *gensec_context, uint8_t auth_type, uint8_t auth_level); /* Used to keep tabs on things like the cli for SMB server authentication */ void *private_data; -- cgit