/[Apache-SVN]/httpd/httpd/trunk/include/http_request.h
ViewVC logotype

Log of /httpd/httpd/trunk/include/http_request.h

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (annotate)
Sticky Revision:

Revision 830527 - (view) (annotate) - [select for diffs]
Modified Wed Oct 28 13:25:49 2009 UTC (4 weeks ago) by poirier
File length: 21895 byte(s)
Diff to previous 697357 (colored)
Fix a lot of doxygen warnings.  Thanks to Brad Hards for the patch.
I added a few more fixes, and there are still more that might
need a doxygen expert.

PR: 48061
Submitted by: Brad Hards
Reviewed by: poirier

Revision 697357 - (view) (annotate) - [select for diffs]
Modified Sat Sep 20 11:58:08 2008 UTC (14 months ago) by pquerna
File length: 21897 byte(s)
Diff to previous 645472 (colored)
Introduce Suspendable Requests to the Event MPM.

Using this basic framework, you can return SUSPENDED from an HTTP Handler,
and then register a callback that is invoked by the MPM at a later time.

This initial version only supports _timers_ as callbacks, but in the future I
would like to add things like wait for socket activity, on a socket specified by
the handler.

Once in a callback, It is then the responsibility of the callback fucntion 
to finish the HTTP Request handling, but this alows you to do cool things like 
a fully async proxy, COMET support, or even rate limiting.

To prove I'm not insane, I've inlcuded an example module, mod_dialup.

You can configure it like this:
<Location "/docs">
  ModemStandard "V.32"
</Location>

And for static files inside that path, you will be rate limited to V.32 speeds, 
aka 9.6 kilobits/second.

Does anyone besides Rüdiger read commit emails :-) ?

I know there are likely huge problems with this, but I would like to see how far
we can push the Event MPM, figure out what to do better, if there is anything, 
and then really dive into the 3.0 development before ApacheCon.

* server/mpm/experimental/event/fdqueue.h:
    (timer_event_t): New structure to hold timer events and callback functions.
    
* server/mpm/experimental/event/fdqueue.c
    (ap_queue_empty): Modify to also look at Timer Ring.

    (ap_queue_init): Initialize Timer Ring.

    (ap_queue_push_timer): New function, pushes a timer event into the queue.

    (ap_queue_pop_something): Renamed function, returns a timer event or
        a socket/pool for a worker thread to run.


* server/mpm/experimental/event/event.c
    (process_socket): If the connection is in SUSPENDED state, don't force it
        into linger mode yet, the callback will have to take care of that.

    (push_timer2worker): New shortcut function, pushes timer event into queue
        for a worker to run.

    (timer_free_ring): New global data structure to recycle memory used by 
        timer events.

    (timer_ring): New global data structure to hold active timer events.

    (g_timer_ring_mtx): Thread mutex to protect timer event data structures.

    (ap_mpm_register_timed_callback): New Function, registers a callback to be
        invoked by the MPM at a later time.

    (listener_thread): Calculate our wakeup time based on the upcoming Event 
        Queue, and after pollset_poll runs, push any Timers that have passed
        onto worker threads to run.
    
    (worker_thread): Call new queue pop method, and if the Timer Event is 
        non-null, invoke the callback.  Once the callback is done, push the
        structure onto the timer_free_ring, to be recycled.

    (child_main): Initialize new mutex and ring structures.


* server/config.c
    (ap_invoke_handler): Allow SUSPENDED aa valid return code from handlers.


* modules/http/http_core.c
    (ap_process_http_async_connection): Don't close the connection when in 
        SUSPENDED state.


* modules/http/http_request.c
    (ap_process_request_after_handler): New function, body pulled from the old,
        ap_process_async_request.  Split to let handlers invoke this so they 
        don't need to know all of the details of finishing a request.

    (ap_process_async_request): If the handler returns SUSPENDED, don't do
        anything but return.


* include/ap_mmn.h: Bump MMN.


* include/ap_mpm.h
    (ap_mpm_register_timed_callback): New function.


* include/httpd.h:
    (SUSPENDED): New return code for handlers.
    (request_rec::invoke_mtx): New mutex to protect callback invokcations
        from being run before the original handler finishes running.
    (conn_state_e): Add a suspended state.


* include/http_request.h
    (ap_process_request_after_handler): New function to make it easier for 
        handlers to finish the HTTP Request.


* modules/test/config.m4: Add mod_dialup to build.


* modules/test/mod_dialup.c: New rate limiting module, requires the Event MPM 
    to work.



Revision 645472 - (view) (annotate) - [select for diffs]
Modified Mon Apr 7 12:09:02 2008 UTC (19 months, 2 weeks ago) by jorton
File length: 21727 byte(s)
Diff to previous 645412 (colored)
* include/http_request.h: Fix warning with gcc -Wall.

Revision 645412 - (view) (annotate) - [select for diffs]
Modified Mon Apr 7 08:44:14 2008 UTC (19 months, 2 weeks ago) by pquerna
File length: 21723 byte(s)
Diff to previous 644525 (colored)
Remove CORE_PRIVATE.

This define serves no modern purpose, since every module in the wild, including 
our own define it, for no purpose.

If you have functions which you do not want in the 'public' API, put them
in a private header, that is not installed, just like mod_ssl does.

Revision 644525 - (view) (annotate) - [select for diffs]
Modified Thu Apr 3 21:51:07 2008 UTC (19 months, 3 weeks ago) by chrisd
File length: 21750 byte(s)
Diff to previous 420983 (colored)
Avoid calling access control hooks for internal requests with
configurations which match those of the initial request.  Revert to
the original behaviour (call access control hooks for internal requests
with URIs different from the initial request) if any access control hooks
or providers are not registered as permitting this optimization.
Introduce wrappers for access control hook and provider registration
which can accept additional mode and flag data.

The configuration walk optimizations were originally proposed a while
ago (see http://marc.info/?l=apache-httpd-dev&m=116536713506234&w=2);
they have been used since then in production systems and appear to be
stable and effective.  They permit certain combinations of modules
and clients to function efficiently, especially when a deeply recursive
series of internal requests, such as those generated by certain WebDAV
requests, are all subject to the identical authentication and authorization
directives.

The major change from the original proposal is a cleaner mechanism for
detecting modules which may expect the old behaviour.  This has been
tested successfully with Subversion's mod_authz_svn, which specifically
requires the old behaviour when performing path-based authorization based
against its own private access control configuration files.

Revision 420983 - (view) (annotate) - [select for diffs]
Modified Tue Jul 11 20:33:53 2006 UTC (3 years, 4 months ago) by fielding
File length: 15516 byte(s)
Diff to previous 395228 (colored)
update license header text

Revision 395228 - (view) (annotate) - [select for diffs]
Modified Wed Apr 19 12:11:27 2006 UTC (3 years, 7 months ago) by colm
File length: 15369 byte(s)
Diff to previous 327925 (colored)
Update the copyright year in all .c, .h and .xml files

Revision 327925 - (view) (annotate) - [select for diffs]
Modified Mon Oct 24 02:39:49 2005 UTC (4 years, 1 month ago) by brianp
File length: 15369 byte(s)
Diff to previous 307355 (colored)
Redesign of request cleanup and logging to use End-Of-Request bucket
(backport from async-dev branch to 2.3 trunk)

Revision 307355 - (view) (annotate) - [select for diffs]
Modified Sun Oct 9 03:53:01 2005 UTC (4 years, 1 month ago) by brianp
File length: 13891 byte(s)
Diff to previous 263931 (colored)
Corrected an out-of-date comment (it's been a while since main.c has
called ap_process_request)

Revision 263931 - (view) (annotate) - [select for diffs]
Modified Sun Aug 28 23:03:59 2005 UTC (4 years, 2 months ago) by ianh
File length: 13906 byte(s)
Diff to previous 151408 (colored)
Doxygen fixup / cleanup

submited by: Neale Ranns neale ranns.org
reviewed by: Ian Holsman


Revision 151408 - (view) (annotate) - [select for diffs]
Modified Fri Feb 4 20:28:49 2005 UTC (4 years, 9 months ago) by jerenkrantz
File length: 15049 byte(s)
Diff to previous 106103 (colored)
Update copyright year to 2005 and standardize on current copyright owner line.

Revision 106103 - (view) (annotate) - [select for diffs]
Modified Sun Nov 21 18:50:36 2004 UTC (5 years ago) by nd
File length: 15013 byte(s)
Diff to previous 105408 (colored)
general property cleanup

Revision 105408 - (view) (annotate) - [select for diffs]
Modified Mon Oct 11 19:27:29 2004 UTC (5 years, 1 month ago) by erikabele
File length: 15013 byte(s)
Diff to previous 104758 (colored)
Minor comment fixes, no code changes:
  - 'sub request' -> 'subrequest'
  - @retrn -> @return
  - ...

PR:
Obtained from:
Submitted by:
Reviewed by:

Revision 104758 - (view) (annotate) - [select for diffs]
Modified Fri Aug 20 20:58:49 2004 UTC (5 years, 3 months ago) by stas
File length: 15027 byte(s)
Diff to previous 102619 (colored)
use more intuitive variable names
ap_sub_req_*_uri  to use new_uri
ap_sub_req_*_file to use new_file

PR:
Obtained from:
Submitted by:
Reviewed by:

Revision 102619 - (view) (annotate) - [select for diffs]
Modified Mon Feb 9 20:40:53 2004 UTC (5 years, 9 months ago) by nd
File length: 15025 byte(s)
Diff to previous 102548 (colored)
fix name of The Apache Software Foundation

Revision 102548 - (view) (annotate) - [select for diffs]
Modified Sat Feb 7 19:27:57 2004 UTC (5 years, 9 months ago) by nd
File length: 15021 byte(s)
Diff to previous 102525 (colored)
fix copyright dates according to the first check in

Revision 102525 - (view) (annotate) - [select for diffs]
Modified Fri Feb 6 22:58:42 2004 UTC (5 years, 9 months ago) by nd
File length: 15021 byte(s)
Diff to previous 102135 (colored)
apply Apache License, Version 2.0

Revision 102135 - (view) (annotate) - [select for diffs]
Modified Thu Jan 1 13:26:26 2004 UTC (5 years, 10 months ago) by nd
File length: 17240 byte(s)
Diff to previous 98573 (colored)
update license to 2004.

Revision 98573 - (view) (annotate) - [select for diffs]
Modified Mon Feb 3 17:53:28 2003 UTC (6 years, 9 months ago) by nd
File length: 17240 byte(s)
Diff to previous 96508 (colored)
finished that boring job:
update license to 2003.

Happy New Year! ;-))

Revision 96508 - (view) (annotate) - [select for diffs]
Modified Fri Aug 23 22:16:05 2002 UTC (7 years, 3 months ago) by gstein
File length: 17240 byte(s)
Diff to previous 95848 (colored)
Clarify the use and sequencing of these three hooks.

Revision 95848 - (view) (annotate) - [select for diffs]
Modified Sat Jun 22 19:39:45 2002 UTC (7 years, 5 months ago) by wrowe
File length: 16526 byte(s)
Diff to previous 95844 (colored)
  Revert to the 1.39 comments about NULL for ap_sub_req_lookup() next_filter

Revision 95844 - (view) (annotate) - [select for diffs]
Modified Sat Jun 22 16:32:45 2002 UTC (7 years, 5 months ago) by wrowe
File length: 16505 byte(s)
Diff to previous 93918 (colored)
  Note the changed meaning of the NULL next_filter argument to the
  ap_sub_req_lookup() family, and fix a few oddball cases (those are,
  PATH_TRANSLATED reference issues.)

Revision 93918 - (view) (annotate) - [select for diffs]
Modified Wed Mar 13 20:48:07 2002 UTC (7 years, 8 months ago) by fielding
File length: 16526 byte(s)
Diff to previous 93045 (colored)
Update our copyright for this year.

Revision 93045 - (view) (annotate) - [select for diffs]
Modified Sun Jan 27 07:44:07 2002 UTC (7 years, 10 months ago) by wrowe
File length: 16526 byte(s)
Diff to previous 91078 (colored)
  Which PR?  I can't count them all.  Get QUERY_STRING and PATH_INFO
  working again.  Also rounds out our fix to work around negotiated
  directories which Greg Ames fixed; this addition in request.c simply
  shortcuts all further processing.

Revision 91078 - (view) (annotate) - [select for diffs]
Modified Wed Sep 19 05:52:42 2001 UTC (8 years, 2 months ago) by jerenkrantz
File length: 16175 byte(s)
Diff to previous 90832 (colored)
This patch eliminates the wasteful run-time conversion of method names from
strings to numbers in places where the methods are known at compile
time.

(Justin fixed the va_end() call to be correct.)

Submitted by:	Brian Pane <bpane@pacbell.net>
Reviewed by:	Justin Erenkrantz

Revision 90832 - (view) (annotate) - [select for diffs]
Modified Fri Aug 31 01:38:06 2001 UTC (8 years, 2 months ago) by wrowe
File length: 15168 byte(s)
Diff to previous 90665 (colored)
  Normalize all paths to run the same, common code for pre-request setup
  from the primary request, redirects and sub-requests.

  This will significantly reduce opporunities for inconsistancy (such
  as Ian observed, and as I repaired only a month ago.)

  This promotes process_request_internal to an ap_ namespace protected
  entity in server/request.c (from it's old home in http/http_request.c)
  since this fn has no http specifics.

Reviewed (in concept): Cliff Woolley, Ian Holsman

Revision 90665 - (view) (annotate) - [select for diffs]
Modified Sat Aug 25 23:43:19 2001 UTC (8 years, 3 months ago) by wrowe
File length: 14870 byte(s)
Diff to previous 90098 (colored)
  Introduce the map_to_storage hook, which allows modules to bypass
  the directory_walk and file_walk for non-file requests.  TRACE
  shortcut moved to http_protocol.c as APR_HOOK_MIDDLE, and the
  directory_walk/file_walk happen as APR_HOOK_VERY_LAST in core.c.

  A seperate patch to mod_proxy is required to short circuit both the
  TRACE and directory_walk/file_walk stuff.  That patch is next.

Revision 90098 - (view) (annotate) - [select for diffs]
Modified Sat Aug 11 18:03:28 2001 UTC (8 years, 3 months ago) by rbb
File length: 14256 byte(s)
Diff to previous 89948 (colored)
Fix the macro expansion problem in the hook declaration.
Submitted by:	Ian Holsman <ianh@cnet.com>

Revision 89948 - (view) (annotate) - [select for diffs]
Modified Mon Aug 6 19:10:12 2001 UTC (8 years, 3 months ago) by wrowe
File length: 14357 byte(s)
Diff to previous 89946 (colored)
  _THIS_ is why mod_dir wouldn't serve the results of mod_negotiation
  with a query string

Revision 89946 - (view) (annotate) - [select for diffs]
Modified Mon Aug 6 19:03:37 2001 UTC (8 years, 3 months ago) by wrowe
File length: 14357 byte(s)
Diff to previous 89664 (colored)
  The real slim shady finally stood up.  This patch segregates the fast
  internal redirect logic back into http_request, the next patch will
  actually fix it.

Revision 89664 - (view) (annotate) - [select for diffs]
Modified Mon Jul 23 19:02:03 2001 UTC (8 years, 4 months ago) by wrowe
File length: 13880 byte(s)
Diff to previous 89444 (colored)
  Downgrade non-stopper from XXX->###

Revision 89444 - (view) (annotate) - [select for diffs]
Modified Wed Jun 27 20:57:14 2001 UTC (8 years, 5 months ago) by wrowe
File length: 13880 byte(s)
Diff to previous 89437 (colored)
  Here, finally are a few cleanups of my fat fingers.

Revision 89437 - (view) (annotate) - [select for diffs]
Modified Wed Jun 27 20:09:24 2001 UTC (8 years, 5 months ago) by wrowe
File length: 13874 byte(s)
Diff to previous 88576 (colored)
  Move duplicated rnew cloning from apr_ap_sub_req_lookup_*() functions,
  and add an ap_sub_req_lookup_dirent() to create a subrequest from the
  results of an apr_dir_read() for mod_negotiation and mod_autoindex.

Revision 88576 - (view) (annotate) - [select for diffs]
Modified Sun Mar 25 17:38:18 2001 UTC (8 years, 8 months ago) by dougm
File length: 12871 byte(s)
Diff to previous 88532 (colored)
change create_request hook to RUN_ALL/return int so handlers can throw errors

Revision 88532 - (view) (annotate) - [select for diffs]
Modified Sun Mar 18 02:33:23 2001 UTC (8 years, 8 months ago) by rbb
File length: 12872 byte(s)
Diff to previous 88513 (colored)
Add a hook, create_request.  This hook allows modules to modify
a request while it is being created.  This hook is called for all
request_rec's, main request, sub request, and internal redirect.
When this hook is called, the the r->main, r->prev, r->next
pointers have been set, so modules can determine what kind of
request this is.

Currently, this is only used by the core module, but protocol modules
are going to need to have the ability to affect the request while it is
being read.

Revision 88513 - (view) (annotate) - [select for diffs]
Modified Tue Mar 13 22:20:55 2001 UTC (8 years, 8 months ago) by ben
File length: 12664 byte(s)
Diff to previous 88453 (colored)
Check in not-quite-working hooks groupings.

Revision 88453 - (view) (annotate) - [select for diffs]
Modified Mon Mar 5 04:43:56 2001 UTC (8 years, 8 months ago) by rbb
File length: 12781 byte(s)
Diff to previous 88184 (colored)
Another chunk of code from http to core.  This should continue to build
on all platforms.  The next job is to shuffle functions back and forth
so that the server builds without mod_http.

Revision 88184 - (view) (annotate) - [select for diffs]
Modified Fri Feb 16 04:26:53 2001 UTC (8 years, 9 months ago) by fielding
File length: 12642 byte(s)
Diff to previous 87970 (colored)
Update copyright to 2001

Revision 87970 - (view) (annotate) - [select for diffs]
Modified Sun Feb 4 03:00:15 2001 UTC (8 years, 9 months ago) by dougm
File length: 12637 byte(s)
Diff to previous 87912 (colored)
fix minor prototype inconsistencies noticed with C::Scan

Revision 87912 - (view) (annotate) - [select for diffs]
Modified Mon Jan 29 22:29:23 2001 UTC (8 years, 9 months ago) by ben
File length: 12630 byte(s)
Diff to previous 87731 (colored)
More doc improvements.

Revision 87731 - (view) (annotate) - [select for diffs]
Modified Fri Jan 19 07:04:36 2001 UTC (8 years, 10 months ago) by wrowe
File length: 12629 byte(s)
Diff to previous 87065 (colored)
  The big change.  This is part 3 of the apr-util symbols rename, please
  see the first commit of srclib/apr-util/include (cvs apr-util/include)
  for the quick glance at symbols changed.

Revision 87065 - (view) (annotate) - [select for diffs]
Modified Wed Nov 22 19:38:07 2000 UTC (9 years ago) by rbb
File length: 12626 byte(s)
Diff to previous 86645 (colored)
Allow modules to specify the first module for a sub-request.  This allows
modules to not have to muck with the output_filter after it creates the
sub-request.  Without this change, modules that create a sub-request have
to manually edit the output_filters, and therefore skip the sub-request
output_filter.  If they skip the sub-request output_filter, then we end
up sending multiple EOS buckets to the core_output_filter.

Revision 86645 - (view) (annotate) - [select for diffs]
Modified Wed Oct 18 17:38:30 2000 UTC (9 years, 1 month ago) by wrowe
File length: 11922 byte(s)
Diff to previous 86618 (colored)
  Fix a broken thing

Revision 86618 - (view) (annotate) - [select for diffs]
Modified Mon Oct 16 23:15:55 2000 UTC (9 years, 1 month ago) by rbb
File length: 11908 byte(s)
Diff to previous 86609 (colored)
Add a sub-request filter.  This filter just strips the EOS from the
brigade generated by the sub-request.  If this is not done, then the
main-request's core_output_filter will get very confused, as will any other
filter in the main-request filter-stack that looks for EOS.

Revision 86609 - (view) (annotate) - [select for diffs]
Modified Mon Oct 16 06:05:15 2000 UTC (9 years, 1 month ago) by wrowe
File length: 11439 byte(s)
Diff to previous 86067 (colored)
  Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
  for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
  and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
  All _VAR_ flavors changes to _DATA to be absolutely clear.
  Thank you Greg, for the most obvious suggestion.

Revision 86067 - (view) (annotate) - [select for diffs]
Modified Mon Aug 14 02:36:42 2000 UTC (9 years, 3 months ago) by rbb
File length: 11439 byte(s)
Diff to previous 86056 (colored)
Document http_request.h using ScanDoc.

Revision 86056 - (view) (annotate) - [select for diffs]
Modified Fri Aug 11 23:53:29 2000 UTC (9 years, 3 months ago) by coar
File length: 6775 byte(s)
Diff to previous 86043 (colored)
	Add mnemonics for the ap_allow_methods() reset flag meanings.

Revision 86043 - (view) (annotate) - [select for diffs]
Modified Thu Aug 10 11:22:57 2000 UTC (9 years, 3 months ago) by coar
File length: 6727 byte(s)
Diff to previous 85976 (colored)
	Add support for arbitrary extension methods for the Allow
	response header field, and an API routine for modifying the
	allowed list in a unified manner for both known and extension
	methods.

Revision 85976 - (view) (annotate) - [select for diffs]
Modified Wed Aug 2 05:27:38 2000 UTC (9 years, 3 months ago) by dougm
File length: 5824 byte(s)
Diff to previous 85685 (colored)
prefix libapr functions and types with apr_

Revision 85685 - (view) (annotate) - [select for diffs]
Modified Sat Jun 24 16:27:47 2000 UTC (9 years, 5 months ago) by gstein
File length: 5822 byte(s)
Diff to previous 85319 (colored)
http_request.[ch]:
*) add the "install_filter" hook as a hook/control point for modules to
   install their filters. [Ryan Bloom]

http_protocol.c:
*) move check_first_conn_error() up in the file; no actual changes
*) add checked_bputstrs(), checked_bflush(), and checked_bputs(). These are
   copies of ap_rvputs(), ap_rflush(), and ap_rputs() respectively. The
   users of the checked_* functions will be independent of filtering changes
   to the ap_r* functions.
*) add flush_filters() place holder

Revision 85319 - (view) (annotate) - [select for diffs]
Modified Sat May 27 22:53:48 2000 UTC (9 years, 6 months ago) by wrowe
File length: 5770 byte(s)
Diff to previous 85309 (colored)
PR:
Obtained from:
Submitted by:
Reviewed by:

  Reverse out additional linkage argument from DECLARE_HOOK
  and IMPLEMENT_HOOK macros.

Revision 85309 - (view) (annotate) - [select for diffs]
Modified Sat May 27 05:28:02 2000 UTC (9 years, 6 months ago) by wrowe
File length: 5836 byte(s)
Diff to previous 85045 (colored)
  This patch corrects the issues from the AP_EXPORT and linkage 
  specification arguments to the ap_hooks.h declarations.  As with
  the APR_ and AP_ patches, API_VAR_EXPORT becomes API_EXPORT_VAR,
  and MODULE_VAR_EXPORT becomes MODULE_EXPORT_VAR.

  I will be happy to revert the inclusion of ap_config.h from 
  httpd.h if this bothers anyone.  More individual modules need
  to be patched if we do so.

  The API_EXPORTs all moved into central storage in the ap_config.h
  header.  Without WIN32 or API_STATIC compile time declarations, 
  these macros remain no-ops.

  This patch also moves the following data from http_main to http_config:

    const char *ap_server_argv0;
    const char *ap_server_root;
    ap_array_header_t *ap_server_pre_read_config;
    ap_array_header_t *ap_server_post_read_config;
    ap_array_header_t *ap_server_config_defines;

  And the following variables had already moved into ap_hooks.c:

    ap_pool_t *g_pHookPool;  (initialized now in http_config)
    int g_bDebugHooks;                   (out of http_config)
    const char *g_szCurrentHookName;     (out of http_config)

  The changes to http_main.c are in preparation for that module to
  move out to a seperate .exe for win32.  Other platforms will be
  unaffected, outside of these changes.

Revision 85045 - (view) (annotate) - [select for diffs]
Modified Wed Apr 26 07:14:39 2000 UTC (9 years, 7 months ago) by dougm
File length: 5770 byte(s)
Diff to previous 84963 (colored)
add AP_ prefix to *HOOK* macros

Revision 84963 - (view) (annotate) - [select for diffs]
Modified Fri Apr 14 15:59:20 2000 UTC (9 years, 7 months ago) by rbb
File length: 5752 byte(s)
Diff to previous 84877 (colored)
Change ap_context_t to ap_pool_t.  This compiles, runs, and serves pages
on Linux, but probably breaks somewhere.

Revision 84877 - (view) (annotate) - [select for diffs]
Modified Fri Mar 31 07:19:05 2000 UTC (9 years, 7 months ago) by fielding
File length: 5755 byte(s)
Diff to previous 84725 (colored)
Update to Apache Software License version 1.1

Revision 84725 - (view) (annotate) - [select for diffs]
Modified Fri Mar 10 00:07:37 2000 UTC (9 years, 8 months ago) by rbb
File length: 5899 byte(s)
Diff to previous 84413 (colored)
Fix all the License issues.  Including:
s/Apache Group/Apache Software Foundation/
s/1999/2000/
s/Sascha's license/ASF license

Revision 84413 - (view) (annotate) - [select for diffs]
Modified Sun Jan 9 05:18:31 2000 UTC (9 years, 10 months ago) by dgaudet
File length: 5773 byte(s)
Diff to previous 84338 (colored)
time overhaul:

- ap_time_t is a 64-bit scalar, microseconds since epoch
- ap_exploded_time_t corresponds to struct tm with a few extras

probably broken on anything except linux.

Revision 84338 - (view) (annotate) - [select for diffs]
Modified Mon Dec 20 16:38:39 1999 UTC (9 years, 11 months ago) by rbb
File length: 5781 byte(s)
Diff to previous 83852 (colored)
First step in getting Apache to use APR's time libraries.  This gets a good
number of them, but I think there are more time values still in the Apache
code.  This works under Linux, but has not been tested anywhere else.

Revision 83852 - (view) (annotate) - [select for diffs]
Modified Tue Aug 31 05:35:52 1999 UTC (10 years, 2 months ago) by rbb
File length: 5772 byte(s)
Diff to previous 83770 (colored)
Changed pools to contexts.  Tested with prefork and pthread mpm's.  I'll
check this out tomorrow and make sure everything was checked in correctly.

Revision 83770 - (view) (annotate) - [select for diffs]
Modified Thu Aug 26 14:18:40 1999 UTC (10 years, 3 months ago) by fielding
File length: 5764 byte(s)
Diff to previous 83749 (colored)
Start to implement module-defined hooks that are a) fast and b) typesafe.
Replace pre_connection module call with a register_hook call and
implement pre_connection as a hook. The intent is that these hooks will
be extended to allow Apache to be multi-protocol, and also to allow the
calling order to be specified on a per-hook/per-module basis.  [Ben Laurie]

Port a bunch of modules to the new module structure.
["Michael H. Voase" <mvoase@midcoast.com.au>]

Submitted by:	Ben Laurie

Revision 83749 - (view) (annotate) - [select for diffs]
Added Tue Aug 24 05:50:50 1999 UTC (10 years, 3 months ago) by fielding
File length: 5445 byte(s)
Apache 1.3.9 baseline for the Apache 2.0 repository.

Obtained from: Apache 1.3.9 (minus unused files), tag APACHE_1_3_9
Submitted by: Apache Group

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2