ABI
Tracker

(serf)




Headers diff: 1.3.8 vs 1.3.9



 serf.h (1.3.8)   serf.h (1.3.9) 
/* Copyright 2002-2004 Justin Erenkrantz and Greg Stein /* ====================================================================
* * Licensed to the Apache Software Foundation (ASF) under one
* Licensed under the Apache License, Version 2.0 (the "License"); * or more contributor license agreements. See the NOTICE file
* you may not use this file except in compliance with the License. * distributed with this work for additional information
* You may obtain a copy of the License at * regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing,
* distributed under the License is distributed on an "AS IS" BASIS, * software distributed under the License is distributed on an
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* See the License for the specific language governing permissions and * KIND, either express or implied. See the License for the
* limitations under the License. * specific language governing permissions and limitations
* under the License.
* ====================================================================
*/ */
#ifndef SERF_H #ifndef SERF_H
#define SERF_H #define SERF_H
/** /**
* @file serf.h * @file serf.h
* @brief Main serf header file * @brief Main serf header file
*/ */
skipping to change at line 1049 skipping to change at line 1054
void serf_debug__closed_conn( void serf_debug__closed_conn(
serf_bucket_alloc_t *allocator); serf_bucket_alloc_t *allocator);
void serf_debug__bucket_destroy( void serf_debug__bucket_destroy(
const serf_bucket_t *bucket); const serf_bucket_t *bucket);
void serf_debug__bucket_alloc_check( void serf_debug__bucket_alloc_check(
serf_bucket_alloc_t *allocator); serf_bucket_alloc_t *allocator);
/* Version info */ /* Version info */
#define SERF_MAJOR_VERSION 1 #define SERF_MAJOR_VERSION 1
#define SERF_MINOR_VERSION 3 #define SERF_MINOR_VERSION 3
#define SERF_PATCH_VERSION 8 #define SERF_PATCH_VERSION 9
/* Version number string */ /* Version number string */
#define SERF_VERSION_STRING APR_STRINGIFY(SERF_MAJOR_VERSION) "." \ #define SERF_VERSION_STRING APR_STRINGIFY(SERF_MAJOR_VERSION) "." \
APR_STRINGIFY(SERF_MINOR_VERSION) "." \ APR_STRINGIFY(SERF_MINOR_VERSION) "." \
APR_STRINGIFY(SERF_PATCH_VERSION) APR_STRINGIFY(SERF_PATCH_VERSION)
/** /**
* Check at compile time if the Serf version is at least a certain * Check at compile time if the Serf version is at least a certain
* level. * level.
* @param major The major version component of the version checked * @param major The major version component of the version checked
 End of changes. 4 change blocks. 
12 lines changed or deleted 17 lines changed or added


 serf_bucket_types.h (1.3.8)   serf_bucket_types.h (1.3.9) 
/* Copyright 2002-2004 Justin Erenkrantz and Greg Stein /* ====================================================================
* * Licensed to the Apache Software Foundation (ASF) under one
* Licensed under the Apache License, Version 2.0 (the "License"); * or more contributor license agreements. See the NOTICE file
* you may not use this file except in compliance with the License. * distributed with this work for additional information
* You may obtain a copy of the License at * regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing,
* distributed under the License is distributed on an "AS IS" BASIS, * software distributed under the License is distributed on an
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* See the License for the specific language governing permissions and * KIND, either express or implied. See the License for the
* limitations under the License. * specific language governing permissions and limitations
* under the License.
* ====================================================================
*/ */
#ifndef SERF_BUCKET_TYPES_H #ifndef SERF_BUCKET_TYPES_H
#define SERF_BUCKET_TYPES_H #define SERF_BUCKET_TYPES_H
#include <apr_mmap.h> #include <apr_mmap.h>
#include <apr_hash.h> #include <apr_hash.h>
/* this header and serf.h refer to each other, so take a little extra care */ /* this header and serf.h refer to each other, so take a little extra care */
#ifndef SERF_H #ifndef SERF_H
 End of changes. 3 change blocks. 
11 lines changed or deleted 16 lines changed or added


 serf_bucket_util.h (1.3.8)   serf_bucket_util.h (1.3.9) 
/* Copyright 2002-2004 Justin Erenkrantz and Greg Stein /* ====================================================================
* * Licensed to the Apache Software Foundation (ASF) under one
* Licensed under the Apache License, Version 2.0 (the "License"); * or more contributor license agreements. See the NOTICE file
* you may not use this file except in compliance with the License. * distributed with this work for additional information
* You may obtain a copy of the License at * regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing,
* distributed under the License is distributed on an "AS IS" BASIS, * software distributed under the License is distributed on an
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* See the License for the specific language governing permissions and * KIND, either express or implied. See the License for the
* limitations under the License. * specific language governing permissions and limitations
* under the License.
* ====================================================================
*/ */
#ifndef SERF_BUCKET_UTIL_H #ifndef SERF_BUCKET_UTIL_H
#define SERF_BUCKET_UTIL_H #define SERF_BUCKET_UTIL_H
/** /**
* @file serf_bucket_util.h * @file serf_bucket_util.h
* @brief This header defines a set of functions and other utilities * @brief This header defines a set of functions and other utilities
* for implementing buckets. It is not needed by users of the bucket * for implementing buckets. It is not needed by users of the bucket
* system. * system.
 End of changes. 3 change blocks. 
11 lines changed or deleted 16 lines changed or added

This html diff was produced by rfcdiff 1.41.The latest version is available from http://tools.ietf.org/tools/rfcdiff/