~ubuntu-branches/ubuntu/trusty/subversion/trusty-proposed

« back to all changes in this revision

Viewing changes to subversion/libsvn_subr/ssl_client_cert_providers.c

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft
  • Date: 2012-06-21 15:36:36 UTC
  • mfrom: (0.4.13 sid)
  • Revision ID: package-import@ubuntu.com-20120621153636-amqqmuidgwgxz1ly
Tags: 1.7.5-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Create pot file on build.
  - Build a python-subversion-dbg package.
  - Build-depend on python-dbg.
  - Build-depend on default-jre-headless/-jdk.
  - Do not apply java-build patch.
  - debian/rules: Manually create the doxygen output directory, otherwise
    we get weird build failures when running parallel builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 * SVN_AUTH_CRED_SSL_CLIENT_CERT
4
4
 *
5
5
 * ====================================================================
6
 
 * Copyright (c) 2000-2004, 2008 CollabNet.  All rights reserved.
7
 
 *
8
 
 * This software is licensed as described in the file COPYING, which
9
 
 * you should have received as part of this distribution.  The terms
10
 
 * are also available at http://subversion.tigris.org/license-1.html.
11
 
 * If newer versions of this license are posted there, you may use a
12
 
 * newer version instead, at your option.
13
 
 *
14
 
 * This software consists of voluntary contributions made by many
15
 
 * individuals.  For exact contribution history, see the revision
16
 
 * history and logs, available at http://subversion.tigris.org/.
 
6
 *    Licensed to the Apache Software Foundation (ASF) under one
 
7
 *    or more contributor license agreements.  See the NOTICE file
 
8
 *    distributed with this work for additional information
 
9
 *    regarding copyright ownership.  The ASF licenses this file
 
10
 *    to you under the Apache License, Version 2.0 (the
 
11
 *    "License"); you may not use this file except in compliance
 
12
 *    with the License.  You may obtain a copy of the License at
 
13
 *
 
14
 *      http://www.apache.org/licenses/LICENSE-2.0
 
15
 *
 
16
 *    Unless required by applicable law or agreed to in writing,
 
17
 *    software distributed under the License is distributed on an
 
18
 *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
19
 *    KIND, either express or implied.  See the License for the
 
20
 *    specific language governing permissions and limitations
 
21
 *    under the License.
17
22
 * ====================================================================
18
23
 */
19
24
 
100
105
 
101
106
/* Baton type for prompting to send client ssl creds.
102
107
   There is no iteration baton type. */
103
 
typedef struct
 
108
typedef struct ssl_client_cert_prompt_provider_baton_t
104
109
{
105
110
  svn_auth_ssl_client_cert_prompt_func_t prompt_func;
106
111
  void *prompt_baton;
110
115
} ssl_client_cert_prompt_provider_baton_t;
111
116
 
112
117
/* Iteration baton. */
113
 
typedef struct
 
118
typedef struct ssl_client_cert_prompt_iter_baton_t
114
119
{
115
120
  /* The original provider baton */
116
121
  ssl_client_cert_prompt_provider_baton_t *pb;