From commits-return-8136-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Sat Feb 17 03:15:08 2007 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 93743 invoked from network); 17 Feb 2007 03:15:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Feb 2007 03:15:04 -0000 Received: (qmail 13244 invoked by uid 500); 17 Feb 2007 03:15:11 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 13077 invoked by uid 500); 17 Feb 2007 03:15:11 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 12943 invoked by uid 99); 17 Feb 2007 03:15:10 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Feb 2007 19:15:10 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Feb 2007 19:14:55 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 8DA271A9820; Fri, 16 Feb 2007 19:14:35 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r508704 [3/8] - in /apr/site/trunk/docs/docs: apr-iconv/trunk/ apr-util/trunk/ apr/trunk/ Date: Sat, 17 Feb 2007 03:14:24 -0000 To: commits@apr.apache.org From: bojan@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070217031435.8DA271A9820@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,209 +18,207 @@
  • File List
  • Globals
  • -

    apr_memcache.h

    Go to the documentation of this file.
    00001 /* Copyright 2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Copyright 2004-2005 Paul Querna
    -00005  *
    -00006  * Licensed under the Apache License, Version 2.0 (the "License");
    -00007  * you may not use this file except in compliance with the License.
    -00008  * You may obtain a copy of the License at
    +

    apr_memcache.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
    +00007  *
    +00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    -00010  *     http://www.apache.org/licenses/LICENSE-2.0
    -00011  *
    -00012  * Unless required by applicable law or agreed to in writing, software
    -00013  * distributed under the License is distributed on an "AS IS" BASIS,
    -00014  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    -00015  * See the License for the specific language governing permissions and
    -00016  * limitations under the License.
    -00017  */
    -00018 
    -00019 #ifndef APR_MEMCACHE_H
    -00020 #define APR_MEMCACHE_H
    -00021 
    -00030 #include "apr.h"
    -00031 #include "apr_pools.h"
    -00032 #include "apr_time.h"
    -00033 #include "apr_strings.h"
    -00034 #include "apr_network_io.h"
    -00035 #include "apr_ring.h"
    -00036 #include "apr_buckets.h"
    -00037 #include "apr_reslist.h"
    -00038 #include "apr_hash.h"
    -00039 
    -00040 #ifdef __cplusplus
    -00041 extern "C" {
    -00042 #endif /* __cplusplus */
    -00043 
    -00051 typedef enum
    -00052 {
    -00053     APR_MC_SERVER_LIVE, 
    -00054     APR_MC_SERVER_DEAD  
    -00055 } apr_memcache_server_status_t;
    -00056 
    -00058 typedef struct apr_memcache_conn_t apr_memcache_conn_t;
    -00059 
    -00061 typedef struct apr_memcache_server_t apr_memcache_server_t;
    -00062 struct apr_memcache_server_t
    -00063 {
    -00064     const char *host; 
    -00065     apr_port_t port; 
    -00066     apr_memcache_server_status_t status; 
    -00067 #if APR_HAS_THREADS || defined(DOXYGEN)
    -00068     apr_reslist_t *conns; 
    -00069 #else
    -00070     apr_memcache_conn_t *conn;
    -00071 #endif
    -00072     apr_pool_t *p; 
    -00073 #if APR_HAS_THREADS
    -00074     apr_thread_mutex_t *lock;
    -00075 #endif
    -00076     apr_time_t btime;
    -00077 };
    -00078 
    -00080 typedef struct
    -00081 {
    -00082     apr_uint32_t flags; 
    -00083     apr_uint16_t nalloc; 
    -00084     apr_uint16_t ntotal; 
    -00085     apr_memcache_server_t **live_servers; 
    -00086     apr_pool_t *p; 
    -00087 } apr_memcache_t;
    -00088 
    -00090 typedef struct
    -00091 {
    -00092     apr_status_t status;
    -00093     const char* key;
    -00094     apr_size_t len;
    -00095     char *data;
    -00096     apr_uint16_t flags;
    -00097 } apr_memcache_value_t;
    -00098 
    -00106 APR_DECLARE(apr_uint32_t) apr_memcache_hash(const char *data, apr_size_t data_len);
    -00107 
    -00115 APR_DECLARE(apr_memcache_server_t *) apr_memcache_find_server_hash(apr_memcache_t *mc, 
    -00116                                                                    const apr_uint32_t hash);
    -00117 
    -00126 APR_DECLARE(apr_status_t) apr_memcache_add_server(apr_memcache_t *mc,
    -00127                                                   apr_memcache_server_t *server);
    -00128 
    -00129 
    -00137 APR_DECLARE(apr_memcache_server_t *) apr_memcache_find_server(apr_memcache_t *mc,
    -00138                                                               const char *host,
    -00139                                                               apr_port_t port);
    -00140 
    -00146 APR_DECLARE(apr_status_t) apr_memcache_enable_server(apr_memcache_t *mc,
    -00147                                                      apr_memcache_server_t *ms);
    -00148 
    -00149 
    -00155 APR_DECLARE(apr_status_t) apr_memcache_disable_server(apr_memcache_t *mc,
    -00156                                                       apr_memcache_server_t *ms);
    -00157 
    -00171 APR_DECLARE(apr_status_t) apr_memcache_server_create(apr_pool_t *p,
    -00172                                                      const char *host,
    -00173                                                      apr_port_t port,
    -00174                                                      apr_uint32_t min,
    -00175                                                      apr_uint32_t smax,
    -00176                                                      apr_uint32_t max,
    -00177                                                      apr_uint32_t ttl,
    -00178                                                      apr_memcache_server_t **ns);
    -00186 APR_DECLARE(apr_status_t) apr_memcache_create(apr_pool_t *p,
    -00187                                               apr_uint16_t max_servers,
    -00188                                               apr_uint32_t flags,
    -00189                                               apr_memcache_t **mc);
    -00190 
    -00201 APR_DECLARE(apr_status_t) apr_memcache_getp(apr_memcache_t *mc, 
    -00202                                             apr_pool_t *p,
    -00203                                             const char* key,
    -00204                                             char **baton,
    -00205                                             apr_size_t *len,
    -00206                                             apr_uint16_t *flags);
    -00207 
    -00208 
    -00217 APR_DECLARE(void) 
    -00218 apr_memcache_add_multget_key(apr_pool_t *data_pool,
    -00219                              const char* key,
    -00220                              apr_hash_t **values);
    -00221 
    -00232 APR_DECLARE(apr_status_t)
    -00233 apr_memcache_multgetp(apr_memcache_t *mc,
    -00234                       apr_pool_t *temp_pool,
    -00235                       apr_pool_t *data_pool,
    -00236                       apr_hash_t *values);
    -00237 
    -00247 APR_DECLARE(apr_status_t) apr_memcache_set(apr_memcache_t *mc,
    -00248                                            const char *key,
    -00249                                            char *baton,
    -00250                                            const apr_size_t data_size,
    -00251                                            apr_uint32_t timeout,
    -00252                                            apr_uint16_t flags);
    -00253 
    -00265 APR_DECLARE(apr_status_t) apr_memcache_add(apr_memcache_t *mc,
    -00266                                            const char *key,
    -00267                                            char *baton,
    -00268                                            const apr_size_t data_size,
    -00269                                            apr_uint32_t timeout,
    -00270                                            apr_uint16_t flags);
    -00271 
    -00283 APR_DECLARE(apr_status_t) apr_memcache_replace(apr_memcache_t *mc,
    -00284                                                const char *key,
    -00285                                                char *data,
    -00286                                                const apr_size_t data_size,
    -00287                                                apr_uint32_t timeout,
    -00288                                                apr_uint16_t flags);
    -00295 APR_DECLARE(apr_status_t) apr_memcache_delete(apr_memcache_t *mc,
    -00296                                               const char *key,
    -00297                                               apr_uint32_t timeout);
    -00298 
    -00306 APR_DECLARE(apr_status_t) apr_memcache_incr(apr_memcache_t *mc, 
    -00307                                             const char *key,
    -00308                                             apr_int32_t n,
    -00309                                             apr_uint32_t *nv);
    -00310 
    -00318 APR_DECLARE(apr_status_t) apr_memcache_decr(apr_memcache_t *mc, 
    -00319                                             const char *key,
    -00320                                             apr_int32_t n,
    -00321                                             apr_uint32_t *new_value);
    -00322 
    -00330 APR_DECLARE(apr_status_t) apr_memcache_version(apr_memcache_server_t *ms,
    -00331                                                apr_pool_t *p,
    -00332                                                char **baton);
    -00333 
    -00334 typedef struct
    -00335 {
    -00337     const char *version;
    -00339     apr_uint32_t pid;
    -00341     apr_uint32_t uptime;
    -00343     apr_time_t time;
    -00345     apr_time_t rusage_user;
    -00347     apr_time_t rusage_system;
    -00349     apr_uint32_t curr_items;
    -00351     apr_uint32_t total_items;
    -00353     apr_uint64_t bytes;
    -00355     apr_uint32_t curr_connections;
    -00357     apr_uint32_t total_connections;
    -00359     apr_uint32_t connection_structures;
    -00361     apr_uint32_t cmd_get;
    -00363     apr_uint32_t cmd_set;
    -00365     apr_uint32_t get_hits;
    -00367     apr_uint32_t get_misses;
    -00369     apr_uint64_t bytes_read;
    -00371     apr_uint64_t bytes_written;
    -00373     apr_uint32_t limit_maxbytes;
    -00374 } apr_memcache_stats_t;
    -00375 
    -00382 APR_DECLARE(apr_status_t) apr_memcache_stats(apr_memcache_server_t *ms, 
    -00383                                              apr_pool_t *p,
    -00384                                              apr_memcache_stats_t **stats);
    -00385 
    -00386 
    -00389 #ifdef __cplusplus
    -00390 }
    -00391 #endif
    -00392 
    -00393 #endif /* APR_MEMCACHE_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +00010 * Unless required by applicable law or agreed to in writing, software +00011 * distributed under the License is distributed on an "AS IS" BASIS, +00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +00013 * See the License for the specific language governing permissions and +00014 * limitations under the License. +00015 */ +00016 +00017 #ifndef APR_MEMCACHE_H +00018 #define APR_MEMCACHE_H +00019 +00028 #include "apr.h" +00029 #include "apr_pools.h" +00030 #include "apr_time.h" +00031 #include "apr_strings.h" +00032 #include "apr_network_io.h" +00033 #include "apr_ring.h" +00034 #include "apr_buckets.h" +00035 #include "apr_reslist.h" +00036 #include "apr_hash.h" +00037 +00038 #ifdef __cplusplus +00039 extern "C" { +00040 #endif /* __cplusplus */ +00041 +00049 typedef enum +00050 { +00051 APR_MC_SERVER_LIVE, +00052 APR_MC_SERVER_DEAD +00053 } apr_memcache_server_status_t; +00054 +00056 typedef struct apr_memcache_conn_t apr_memcache_conn_t; +00057 +00059 typedef struct apr_memcache_server_t apr_memcache_server_t; +00060 struct apr_memcache_server_t +00061 { +00062 const char *host; +00063 apr_port_t port; +00064 apr_memcache_server_status_t status; +00065 #if APR_HAS_THREADS || defined(DOXYGEN) +00066 apr_reslist_t *conns; +00067 #else +00068 apr_memcache_conn_t *conn; +00069 #endif +00070 apr_pool_t *p; +00071 #if APR_HAS_THREADS +00072 apr_thread_mutex_t *lock; +00073 #endif +00074 apr_time_t btime; +00075 }; +00076 +00078 typedef struct +00079 { +00080 apr_uint32_t flags; +00081 apr_uint16_t nalloc; +00082 apr_uint16_t ntotal; +00083 apr_memcache_server_t **live_servers; +00084 apr_pool_t *p; +00085 } apr_memcache_t; +00086 +00088 typedef struct +00089 { +00090 apr_status_t status; +00091 const char* key; +00092 apr_size_t len; +00093 char *data; +00094 apr_uint16_t flags; +00095 } apr_memcache_value_t; +00096 +00104 APR_DECLARE(apr_uint32_t) apr_memcache_hash(const char *data, apr_size_t data_len); +00105 +00113 APR_DECLARE(apr_memcache_server_t *) apr_memcache_find_server_hash(apr_memcache_t *mc, +00114 const apr_uint32_t hash); +00115 +00124 APR_DECLARE(apr_status_t) apr_memcache_add_server(apr_memcache_t *mc, +00125 apr_memcache_server_t *server); +00126 +00127 +00135 APR_DECLARE(apr_memcache_server_t *) apr_memcache_find_server(apr_memcache_t *mc, +00136 const char *host, +00137 apr_port_t port); +00138 +00144 APR_DECLARE(apr_status_t) apr_memcache_enable_server(apr_memcache_t *mc, +00145 apr_memcache_server_t *ms); +00146 +00147 +00153 APR_DECLARE(apr_status_t) apr_memcache_disable_server(apr_memcache_t *mc, +00154 apr_memcache_server_t *ms); +00155 +00169 APR_DECLARE(apr_status_t) apr_memcache_server_create(apr_pool_t *p, +00170 const char *host, +00171 apr_port_t port, +00172 apr_uint32_t min, +00173 apr_uint32_t smax, +00174 apr_uint32_t max, +00175 apr_uint32_t ttl, +00176 apr_memcache_server_t **ns); +00184 APR_DECLARE(apr_status_t) apr_memcache_create(apr_pool_t *p, +00185 apr_uint16_t max_servers, +00186 apr_uint32_t flags, +00187 apr_memcache_t **mc); +00188 +00199 APR_DECLARE(apr_status_t) apr_memcache_getp(apr_memcache_t *mc, +00200 apr_pool_t *p, +00201 const char* key, +00202 char **baton, +00203 apr_size_t *len, +00204 apr_uint16_t *flags); +00205 +00206 +00215 APR_DECLARE(void) +00216 apr_memcache_add_multget_key(apr_pool_t *data_pool, +00217 const char* key, +00218 apr_hash_t **values); +00219 +00230 APR_DECLARE(apr_status_t) +00231 apr_memcache_multgetp(apr_memcache_t *mc, +00232 apr_pool_t *temp_pool, +00233 apr_pool_t *data_pool, +00234 apr_hash_t *values); +00235 +00245 APR_DECLARE(apr_status_t) apr_memcache_set(apr_memcache_t *mc, +00246 const char *key, +00247 char *baton, +00248 const apr_size_t data_size, +00249 apr_uint32_t timeout, +00250 apr_uint16_t flags); +00251 +00263 APR_DECLARE(apr_status_t) apr_memcache_add(apr_memcache_t *mc, +00264 const char *key, +00265 char *baton, +00266 const apr_size_t data_size, +00267 apr_uint32_t timeout, +00268 apr_uint16_t flags); +00269 +00281 APR_DECLARE(apr_status_t) apr_memcache_replace(apr_memcache_t *mc, +00282 const char *key, +00283 char *data, +00284 const apr_size_t data_size, +00285 apr_uint32_t timeout, +00286 apr_uint16_t flags); +00293 APR_DECLARE(apr_status_t) apr_memcache_delete(apr_memcache_t *mc, +00294 const char *key, +00295 apr_uint32_t timeout); +00296 +00304 APR_DECLARE(apr_status_t) apr_memcache_incr(apr_memcache_t *mc, +00305 const char *key, +00306 apr_int32_t n, +00307 apr_uint32_t *nv); +00308 +00316 APR_DECLARE(apr_status_t) apr_memcache_decr(apr_memcache_t *mc, +00317 const char *key, +00318 apr_int32_t n, +00319 apr_uint32_t *new_value); +00320 +00328 APR_DECLARE(apr_status_t) apr_memcache_version(apr_memcache_server_t *ms, +00329 apr_pool_t *p, +00330 char **baton); +00331 +00332 typedef struct +00333 { +00335 const char *version; +00337 apr_uint32_t pid; +00339 apr_uint32_t uptime; +00341 apr_time_t time; +00343 apr_time_t rusage_user; +00345 apr_time_t rusage_system; +00347 apr_uint32_t curr_items; +00349 apr_uint32_t total_items; +00351 apr_uint64_t bytes; +00353 apr_uint32_t curr_connections; +00355 apr_uint32_t total_connections; +00357 apr_uint32_t connection_structures; +00359 apr_uint32_t cmd_get; +00361 apr_uint32_t cmd_set; +00363 apr_uint32_t get_hits; +00365 apr_uint32_t get_misses; +00367 apr_uint64_t bytes_read; +00369 apr_uint64_t bytes_written; +00371 apr_uint32_t limit_maxbytes; +00372 } apr_memcache_stats_t; +00373 +00380 APR_DECLARE(apr_status_t) apr_memcache_stats(apr_memcache_server_t *ms, +00381 apr_pool_t *p, +00382 apr_memcache_stats_t **stats); +00383 +00384 +00387 #ifdef __cplusplus +00388 } +00389 #endif +00390 +00391 #endif /* APR_MEMCACHE_H */ +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__memcache_8h.html Fri Feb 16 19:14:13 2007 @@ -232,7 +232,7 @@ Client interface for memcached
    Remarks:
    To use this interface you must have a separate memcached server running. See the memcached website at http://www.danga.com/memcached/ for more information.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_optional.h

    Go to the documentation of this file.
    00001 /* Copyright 2001-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_optional.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -66,7 +66,7 @@
     00090 #endif
     00091 
     00092 #endif /* APR_OPTIONAL_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__optional_8h.html Fri Feb 16 19:14:13 2007 @@ -48,7 +48,7 @@

    Detailed Description

    APR-UTIL registration of functions exported by modules.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_optional_hooks.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_optional_hooks.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -81,7 +81,7 @@
     00115 #endif
     00116 
     00117 #endif /* APR_OPTIONAL_HOOK_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__optional__hooks_8h.html Fri Feb 16 19:14:13 2007 @@ -40,7 +40,7 @@

    Detailed Description

    Apache optional hook functions.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_queue.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_queue.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -74,7 +74,7 @@
     00136 #endif /* APR_HAS_THREADS */
     00137 
     00138 #endif /* APRQUEUE_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__queue_8h.html Fri Feb 16 19:14:13 2007 @@ -52,7 +52,7 @@ Thread Safe FIFO bounded queue.

    Note:
    Since most implementations of the queue are backed by a condition variable implementation, it isn't available on systems without threads. Although condition variables are some times available without threads.
    -
    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_reslist.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_reslist.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -101,7 +101,7 @@
     00148 #endif  /* APR_HAS_THREADS */
     00149 
     00150 #endif  /* ! APR_RESLIST_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__reslist_8h.html Fri Feb 16 19:14:13 2007 @@ -57,7 +57,7 @@

    Detailed Description

    APR-UTIL Resource List Routines.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_rmm.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_rmm.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -82,7 +82,7 @@
     00135 
     00136 #endif  /* ! APR_RMM_H */
     00137 
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__rmm_8h.html Fri Feb 16 19:14:13 2007 @@ -61,7 +61,7 @@

    Detailed Description

    APR-UTIL Relocatable Memory Management Routines.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_sdbm.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_sdbm.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -90,7 +90,7 @@
     00168 
     00173 APU_DECLARE(int) apr_sdbm_rdonly(apr_sdbm_t *db);
     00175 #endif /* APR_SDBM_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__sdbm_8h.html Fri Feb 16 19:14:13 2007 @@ -69,7 +69,7 @@

    Detailed Description

    apr-util SDBM library

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_sha1.h

    Go to the documentation of this file.
    00001 /* Copyright 2001-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_sha1.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -84,7 +84,7 @@
     00119 #endif
     00120 
     00121 #endif  /* APR_SHA1_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__sha1_8h.html Fri Feb 16 19:14:13 2007 @@ -305,7 +305,7 @@

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_ssl.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2006 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_ssl.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -102,7 +102,7 @@
     00252 #endif
     00253 
     00254 #endif  /* !APR_SSL_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl_8h.html Fri Feb 16 19:14:13 2007 @@ -80,7 +80,7 @@

    Detailed Description

    APR-UTIL SSL socket functions.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__openssl__private_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__openssl__private_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__openssl__private_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__openssl__private_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_ssl_openssl_private.h

    00001 /* Copyright 2000-2006 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_ssl_openssl_private.h

    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -56,7 +56,7 @@
     00036 #endif /* APU_HAVE_OPENSSL */
     00037 
     00038 #endif /* ! APR_SSL_OPENSSL_PRIVATE_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__private_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__private_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__private_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__private_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_ssl_private.h

    00001 /* Copyright 2000-2006 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_ssl_private.h

    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -91,7 +91,7 @@
     00085 #endif
     00086 
     00087 #endif /* APR_SSL_PRIVATE_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__winsock__private_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__winsock__private_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__winsock__private_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ssl__winsock__private_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_ssl_winsock_private.h

    00001 /* Copyright 2000-2006 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_ssl_winsock_private.h

    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -57,7 +57,7 @@
     00037 #endif /* APU_HAVE_WINSOCKSSL */
     00038 
     00039 #endif /* ! APR_SSL_WINSOCK_PRIVATE_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1