1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
20 #include <SerfCallbacks.hxx>
22 #include <SerfSession.hxx>
23 #include <SerfRequestProcessor.hxx>
25 using namespace http_dav_ucp
;
27 extern "C" apr_status_t
Serf_ConnectSetup( apr_socket_t
*skt
,
28 serf_bucket_t
**read_bkt
,
29 serf_bucket_t
**write_bkt
,
33 SerfSession
* pSerfSession
= static_cast< SerfSession
* >( setup_baton
);
34 return pSerfSession
->setupSerfConnection( skt
,
40 extern "C" apr_status_t
Serf_Credentials( char **username
,
42 serf_request_t
*request
,
45 const char *authn_type
,
49 SerfRequestProcessor
* pReqProc
= static_cast< SerfRequestProcessor
* >( baton
);
50 return pReqProc
->provideSerfCredentials( username
,
59 extern "C" apr_status_t
Serf_CertificateChainValidation(
62 const char** pCertificateChainBase64Encoded
,
63 int nCertificateChainLength
)
65 return static_cast<SerfSession
*>(pSerfSession
)
66 ->verifySerfCertificateChain(nFailures
, pCertificateChainBase64Encoded
, nCertificateChainLength
);
69 extern "C" apr_status_t
Serf_SetupRequest( serf_request_t
*request
,
71 serf_bucket_t
**req_bkt
,
72 serf_response_acceptor_t
*acceptor
,
73 void **acceptor_baton
,
74 serf_response_handler_t
*handler
,
78 SerfRequestProcessor
* pReqProc
= static_cast< SerfRequestProcessor
* >( setup_baton
);
79 return pReqProc
->setupSerfRequest( request
,
88 extern "C" serf_bucket_t
* Serf_AcceptResponse( serf_request_t
*request
,
89 serf_bucket_t
*stream
,
93 SerfRequestProcessor
* pReqProc
= static_cast< SerfRequestProcessor
* >( acceptor_baton
);
94 return pReqProc
->acceptSerfResponse( request
,
99 extern "C" apr_status_t
Serf_HandleResponse( serf_request_t
*request
,
100 serf_bucket_t
*response
,
104 SerfRequestProcessor
* pReqProc
= static_cast< SerfRequestProcessor
* >( handler_baton
);
105 return pReqProc
->handleSerfResponse( request
,
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */