public
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/FooBarWidget/passenger.git
Click here to lend your support to: passenger and make a donation at www.pledgie.com !
FooBarWidget (author)
Fri Feb 01 12:38:11 -0800 2008
commit  a92649cae9d3a26508f13b8f2cb73694216335ac
tree    5a1f2a4c17df1cb205f4f5eedb2a1e71e245c010
parent  42b311bb9b1137922bb9d873d58cc6e7672886c2
passenger / ext / apache2 / DispatcherBucket.h
100644 17 lines (13 sloc) 0.513 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * This file implements an APR bucket which understands the request handler's
 * (= the dispatcher's) protocol.
 * See http://www.apachetutor.org/dev/brigades for information on APR buckets.
 */
#ifndef _DISPATCHER_BUCKET_H_
#define _DISPATCHER_BUCKET_H_
 
#include <apr_pools.h>
#include <apr_buckets.h>
#include "Application.h"
 
apr_bucket *dispatcher_bucket_create(apr_pool_t *pool, Passenger::ApplicationPtr app,
  apr_interval_time_t timeout, apr_bucket_alloc_t *list);
 
#endif /* _DISPATCHER_BUCKET_H_ */