From c0b7206652b2852bc574694e7ba07ba1c2acdc00 Mon Sep 17 00:00:00 2001 From: hongbotian Date: Mon, 30 Nov 2015 03:10:21 -0500 Subject: delete app Change-Id: Id4c572809969ebe89e946e88063eaed262cff3f2 Signed-off-by: hongbotian --- .../native/common/jk_ajp13.h | 126 --------------------- 1 file changed, 126 deletions(-) delete mode 100644 rubbos/app/tomcat-connectors-1.2.32-src/native/common/jk_ajp13.h (limited to 'rubbos/app/tomcat-connectors-1.2.32-src/native/common/jk_ajp13.h') diff --git a/rubbos/app/tomcat-connectors-1.2.32-src/native/common/jk_ajp13.h b/rubbos/app/tomcat-connectors-1.2.32-src/native/common/jk_ajp13.h deleted file mode 100644 index d2a9ab2e..00000000 --- a/rubbos/app/tomcat-connectors-1.2.32-src/native/common/jk_ajp13.h +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information 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 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/*************************************************************************** - * Description: Experimental bi-directionl protocol handler. * - * Author: Gal Shachor * - * Version: $Revision: 751213 $ * - ***************************************************************************/ -#ifndef JK_AJP13_H -#define JK_AJP13_H - -#include "jk_ajp_common.h" - -#ifdef __cplusplus -extern "C" -{ -#endif /* __cplusplus */ - -#define AJP13_PROTO 13 -#define AJP13_WS_HEADER 0x1234 -#define AJP13_SW_HEADER 0x4142 /* 'AB' */ - -#define AJP13_DEF_HOST ("localhost") -#define AJP13_DEF_PORT (8009) -#define AJP13_READ_BUF_SIZE (8*1024) -#define AJP13_DEF_CACHE_SZ (1) -#define JK_INTERNAL_ERROR (-2) -#define JK_FATAL_ERROR (-3) -#define JK_CLIENT_ERROR (-4) -#define JK_SERVER_ERROR (-5) -#define JK_CLIENT_RD_ERROR (-6) -#define JK_CLIENT_WR_ERROR (-7) -#define JK_STATUS_ERROR (-8) -#define JK_STATUS_FATAL_ERROR (-9) -#define JK_REPLY_TIMEOUT (-10) -#define JK_AJP_PROTOCOL_ERROR (-11) - -#define AJP13_MAX_SEND_BODY_SZ (DEF_BUFFER_SZ - 6) -#define AJP13_DEF_TIMEOUT (0) /* Idle timout for pooled connections */ - -/* - * Message does not have a response (for example, JK_AJP13_END_RESPONSE) - */ -#define JK_AJP13_ERROR -1 -/* - * Message does not have a response (for example, JK_AJP13_END_RESPONSE) - */ -#define JK_AJP13_NO_RESPONSE 0 -/* - * Message have a response. - */ -#define JK_AJP13_HAS_RESPONSE 1 - -/* - * Forward a request from the web server to the servlet container. - */ -#define JK_AJP13_FORWARD_REQUEST (unsigned char)2 - -/* - * Write a body chunk from the servlet container to the web server - */ -#define JK_AJP13_SEND_BODY_CHUNK (unsigned char)3 - -/* - * Send response headers from the servlet container to the web server. - */ -#define JK_AJP13_SEND_HEADERS (unsigned char)4 - -/* - * Marks the end of response. - */ -#define JK_AJP13_END_RESPONSE (unsigned char)5 - -/* - * Marks the end of response. - */ -#define JK_AJP13_GET_BODY_CHUNK (unsigned char)6 - -/* - * Asks the container to shutdown - */ -#define JK_AJP13_SHUTDOWN (unsigned char)7 - -/* - * Told container to take control (secure login phase) - */ -#define AJP13_PING_REQUEST (unsigned char)8 - -/* - * Check if the container is alive - */ -#define AJP13_CPING_REQUEST (unsigned char)10 - -/* - * Reply from the container to alive request - */ -#define AJP13_CPONG_REPLY (unsigned char)9 - - - -/* - * Functions - */ - -int ajp13_marshal_shutdown_into_msgb(jk_msg_buf_t *msg, - jk_pool_t *p, jk_logger_t *l); - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* JK_AJP13_H */ -- cgit 1.2.3-korg