2 * compat_providers.c: wrapper providers backwards compatibility
4 * ====================================================================
5 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
7 * This software is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at http://subversion.tigris.org/license-1.html.
10 * If newer versions of this license are posted there, you may use a
11 * newer version instead, at your option.
13 * This software consists of voluntary contributions made by many
14 * individuals. For exact contribution history, see the revision
15 * history and logs, available at http://subversion.tigris.org/.
16 * ====================================================================
19 /* ==================================================================== */
26 #include "svn_client.h"
29 svn_client_get_simple_prompt_provider
30 (svn_auth_provider_object_t
**provider
,
31 svn_auth_simple_prompt_func_t prompt_func
,
36 svn_auth_get_simple_prompt_provider(provider
, prompt_func
, prompt_baton
,
41 svn_client_get_username_prompt_provider
42 (svn_auth_provider_object_t
**provider
,
43 svn_auth_username_prompt_func_t prompt_func
,
48 svn_auth_get_username_prompt_provider(provider
, prompt_func
, prompt_baton
,
54 void svn_client_get_simple_provider(svn_auth_provider_object_t
**provider
,
57 svn_auth_get_simple_provider(provider
, pool
);
60 #if defined(WIN32) && !defined(__MINGW32__)
62 svn_client_get_windows_simple_provider(svn_auth_provider_object_t
**provider
,
65 svn_auth_get_windows_simple_provider(provider
, pool
);
69 void svn_client_get_username_provider(svn_auth_provider_object_t
**provider
,
72 svn_auth_get_username_provider(provider
, pool
);
76 svn_client_get_ssl_server_trust_file_provider
77 (svn_auth_provider_object_t
**provider
, apr_pool_t
*pool
)
79 svn_auth_get_ssl_server_trust_file_provider(provider
, pool
);
83 svn_client_get_ssl_client_cert_file_provider
84 (svn_auth_provider_object_t
**provider
, apr_pool_t
*pool
)
86 svn_auth_get_ssl_client_cert_file_provider(provider
, pool
);
90 svn_client_get_ssl_client_cert_pw_file_provider
91 (svn_auth_provider_object_t
**provider
, apr_pool_t
*pool
)
93 svn_auth_get_ssl_client_cert_pw_file_provider(provider
, pool
);
97 svn_client_get_ssl_server_trust_prompt_provider
98 (svn_auth_provider_object_t
**provider
,
99 svn_auth_ssl_server_trust_prompt_func_t prompt_func
,
103 svn_auth_get_ssl_server_trust_prompt_provider(provider
, prompt_func
,
108 svn_client_get_ssl_client_cert_prompt_provider
109 (svn_auth_provider_object_t
**provider
,
110 svn_auth_ssl_client_cert_prompt_func_t prompt_func
,
115 svn_auth_get_ssl_client_cert_prompt_provider(provider
, prompt_func
,
116 prompt_baton
, retry_limit
,
121 svn_client_get_ssl_client_cert_pw_prompt_provider
122 (svn_auth_provider_object_t
**provider
,
123 svn_auth_ssl_client_cert_pw_prompt_func_t prompt_func
,
128 svn_auth_get_ssl_client_cert_pw_prompt_provider(provider
, prompt_func
,
129 prompt_baton
, retry_limit
,