fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / ucb / source / ucp / webdav / SerfCallbacks.hxx
blobb82246e681466fcfdc9ce91c990285a8841bf378
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #ifndef INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFCALLBACKS_HXX
22 #define INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFCALLBACKS_HXX
24 #include <serf.h>
26 extern "C" apr_status_t Serf_ConnectSetup( apr_socket_t *skt,
27 serf_bucket_t **read_bkt,
28 serf_bucket_t **write_bkt,
29 void *setup_baton,
30 apr_pool_t *pool );
32 extern "C" apr_status_t Serf_Credentials( char **username,
33 char **password,
34 serf_request_t *request,
35 void *baton,
36 int code,
37 const char *authn_type,
38 const char *realm,
39 apr_pool_t *pool );
41 extern "C" apr_status_t Serf_CertificateChainValidation(
42 void* pSerfSession,
43 int nFailures,
44 int error_depth,
45 const serf_ssl_certificate_t * const * pCertificateChainBase64Encoded,
46 apr_size_t nCertificateChainLength);
48 extern "C" apr_status_t Serf_SetupRequest( serf_request_t *request,
49 void *setup_baton,
50 serf_bucket_t **req_bkt,
51 serf_response_acceptor_t *acceptor,
52 void **acceptor_baton,
53 serf_response_handler_t *handler,
54 void **handler_baton,
55 apr_pool_t * pool );
57 extern "C" serf_bucket_t* Serf_AcceptResponse( serf_request_t *request,
58 serf_bucket_t *stream,
59 void *acceptor_baton,
60 apr_pool_t *pool );
62 extern "C" apr_status_t Serf_HandleResponse( serf_request_t *request,
63 serf_bucket_t *response,
64 void *handler_baton,
65 apr_pool_t *pool );
67 #endif // INCLUDED_UCB_SOURCE_UCP_WEBDAV_SERFCALLBACKS_HXX
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */