~ubuntu-branches/ubuntu/oneiric/libapache-mod-jk/oneiric

« back to all changes in this revision

Viewing changes to native/common/jk_ajp14_worker.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2006-08-05 16:30:53 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060805163053-myf66gm6j1a21ps6
Tags: 1:1.2.18-1ubuntu1
Merge from Debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright 1999-2004 The Apache Software Foundation
 
3
 *
 
4
 *  Licensed under the Apache License, Version 2.0 (the "License");
 
5
 *  you may not use this file except in compliance with the License.
 
6
 *  You may obtain a copy of the License at
 
7
 *
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 *  Unless required by applicable law or agreed to in writing, software
 
11
 *  distributed under the License is distributed on an "AS IS" BASIS,
 
12
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 *  See the License for the specific language governing permissions and
 
14
 *  limitations under the License.
 
15
 */
 
16
 
 
17
/***************************************************************************
 
18
 * Description: ajpv14 worker header file                                  *
 
19
 * Author:      Henri Gomez <hgomez@apache.org>                            *
 
20
 * Version:     $Revision: 300224 $                                           *
 
21
 ***************************************************************************/
 
22
 
 
23
#ifndef JK_AJP14_WORKER_H
 
24
#define JK_AJP14_WORKER_H
 
25
 
 
26
#include "jk_pool.h"
 
27
#include "jk_connect.h"
 
28
#include "jk_util.h"
 
29
#include "jk_msg_buff.h"
 
30
#include "jk_ajp13.h"
 
31
#include "jk_ajp14.h"
 
32
#include "jk_logger.h"
 
33
#include "jk_service.h"
 
34
#include "jk_ajp13_worker.h"
 
35
 
 
36
#ifdef __cplusplus
 
37
extern "C"
 
38
{
 
39
#endif                          /* __cplusplus */
 
40
 
 
41
#define JK_AJP14_WORKER_NAME ("ajp14")
 
42
#define JK_AJP14_WORKER_TYPE (3)
 
43
 
 
44
int JK_METHOD ajp14_worker_factory(jk_worker_t **w,
 
45
                                   const char *name, jk_logger_t *l);
 
46
 
 
47
#ifdef __cplusplus
 
48
}
 
49
#endif                          /* __cplusplus */
 
50
 
 
51
#endif                          /* JK_AJP14_WORKER_H */