From 8ea1212d992c564a3a7849a41be9000ce50d0f6b Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 21 Feb 2000 19:56:49 +0000 Subject: Add "authenticator" to CamelSession and update things to use it. svn path=/trunk/; revision=1890 --- tests/test10.c | 11 ++++++++++- tests/test11.c | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test10.c b/tests/test10.c index d8a8090138..1d1d2904b9 100644 --- a/tests/test10.c +++ b/tests/test10.c @@ -60,6 +60,15 @@ create_sample_mime_message () return message; } +static char * +auth_callback(char *prompt, gboolean secret, + CamelService *service, char *item, + CamelException *ex) +{ + printf ("auth_callback called: %s\n", prompt); + return NULL; +} + @@ -80,7 +89,7 @@ main (int argc, char**argv) ex = camel_exception_new (); camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so"); - session = camel_session_new (); + session = camel_session_new (auth_callback); store = camel_session_get_store (session, store_url, ex); if (camel_exception_get_id (ex)) { printf ("Exception caught in camel_session_get_store\n" diff --git a/tests/test11.c b/tests/test11.c index de605365a6..36ec9c6159 100644 --- a/tests/test11.c +++ b/tests/test11.c @@ -22,6 +22,15 @@ #include #include +static char * +auth_callback(char *prompt, gboolean secret, + CamelService *service, char *item, + CamelException *ex) +{ + printf ("auth_callback called: %s\n", prompt); + return NULL; +} + int main (int argc, char**argv) { @@ -40,7 +49,7 @@ main (int argc, char**argv) ex = camel_exception_new (); camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so.0"); - session = camel_session_new (); + session = camel_session_new (auth_callback); store = camel_session_get_store (session, store_url, ex); if (camel_exception_get_id (ex)) { printf ("Exception caught in camel_session_get_store\n" -- cgit v1.2.3