OSDN Git Service

* Updated changelog.
[modchxj/mod_chxj.git] / include / chxj_serf.h
1 /*
2  * Copyright (C) 2005-2009 Atsushi Konno All rights reserved.
3  * Copyright (C) 2005 QSDN,Inc. All rights reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 #ifndef __CHXJ_SERF_H__
18 #define __CHXJ_SERF_H__
19
20 #include "chxj_apache.h"
21
22 #include "apr.h"
23 #include "apr_uri.h"
24 #include "apr_strings.h"
25 #include "apr_atomic.h"
26 #include "apr_base64.h"
27 #include "apr_getopt.h"
28 #include "apr_version.h"
29 #include "apr_pools.h"
30 /*
31  * libserf CHXJ Interface.
32  */
33 #include "serf.h"
34
35 #if APR_MAJOR_VERSION == 0
36 #define apr_atomic_inc32 apr_atomic_inc
37 #define apr_atomic_dec32 apr_atomic_dec
38 #define apr_atomic_read32 apr_atomic_read
39 #endif
40
41
42 extern char *default_chxj_serf_get(request_rec *r, apr_pool_t *ppool, const char *url_path, int set_headers_flag, apr_size_t *res_len);
43 extern char *(*chxj_serf_get)(request_rec *r, apr_pool_t *ppool, const char *url_path, int set_headers_flag, apr_size_t *res_len);
44
45 extern char *default_chxj_serf_post(request_rec *r, apr_pool_t *ppool, const char *url_path, char *post_data, apr_size_t post_data_len, int set_headers_flag, apr_size_t *res_len, int *response_code);
46 extern char *(*chxj_serf_post)(request_rec *r, apr_pool_t *ppool, const char *url_path, char *post_data, apr_size_t post_data_len, int set_headers_flag, apr_size_t *res_len, int *response_code);
47 extern apr_table_t *(*chxj_serf_head)(request_rec *r, apr_pool_t *ppool, const char *url_path, int *response_code);
48
49
50 #endif
51 /*
52  * vim:ts=2 et
53  */