|
What this is
Other links
The source code/* * Copyright 1999-2004 The Apache Software Foundation * * Licensed 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. */ package org.apache.coyote.http11; /** * Constants. * * @author Remy Maucherat */ public final class Constants { // -------------------------------------------------------------- Constants /** * Package name. */ public static final String Package = "org.apache.coyote.http11"; public static final int DEFAULT_CONNECTION_LINGER = -1; public static final int DEFAULT_CONNECTION_TIMEOUT = 60000; public static final int DEFAULT_CONNECTION_UPLOAD_TIMEOUT = 300000; public static final int DEFAULT_SERVER_SOCKET_TIMEOUT = 0; public static final boolean DEFAULT_TCP_NO_DELAY = true; /** * Server string. */ public static final String SERVER = "Apache-Coyote/1.1"; /** * CR. */ public static final byte CR = (byte) '\r'; /** * LF. */ public static final byte LF = (byte) '\n'; /** * SP. */ public static final byte SP = (byte) ' '; /** * HT. */ public static final byte HT = (byte) '\t'; /** * COLON. */ public static final byte COLON = (byte) ':'; /** * 'A'. */ public static final byte A = (byte) 'A'; /** * 'a'. */ public static final byte a = (byte) 'a'; /** * 'Z'. */ public static final byte Z = (byte) 'Z'; /** * '?'. */ public static final byte QUESTION = (byte) '?'; /** * Lower case offset. */ public static final byte LC_OFFSET = A - a; /** * Default HTTP header buffer size. */ public static final int DEFAULT_HTTP_HEADER_BUFFER_SIZE = 48 * 1024; /** * CRLF. */ public static final String CRLF = "\r\n"; /** * CRLF bytes. */ public static final byte[] CRLF_BYTES = {(byte) '\r', (byte) '\n'}; /** * Colon bytes. */ public static final byte[] COLON_BYTES = {(byte) ':', (byte) ' '}; /** * Close bytes. */ public static final byte[] CLOSE_BYTES = { (byte) 'c', (byte) 'l', (byte) 'o', (byte) 's', (byte) 'e' }; /** * Keep-alive bytes. */ public static final byte[] KEEPALIVE_BYTES = { (byte) 'k', (byte) 'e', (byte) 'e', (byte) 'p', (byte) '-', (byte) 'a', (byte) 'l', (byte) 'i', (byte) 'v', (byte) 'e' }; /** * Identity filters (input and output). */ public static final int IDENTITY_FILTER = 0; /** * Chunked filters (input and output). */ public static final int CHUNKED_FILTER = 1; /** * Void filters (input and output). */ public static final int VOID_FILTER = 2; /** * GZIP filter (output). */ public static final int GZIP_FILTER = 3; /** * Buffered filter (input) */ public static final int BUFFERED_FILTER = 3; /** * HTTP/1.0. */ public static final String HTTP_10 = "HTTP/1.0"; /** * HTTP/1.1. */ public static final String HTTP_11 = "HTTP/1.1"; /** * GET. */ public static final String GET = "GET"; /** * HEAD. */ public static final String HEAD = "HEAD"; /** * POST. */ public static final String POST = "POST"; /** * Ack string when pipelining HTTP requests. */ public static final byte[] ACK_BYTES = { (byte) 'H', (byte) 'T', (byte) 'T', (byte) 'P', (byte) '/', (byte) '1', (byte) '.', (byte) '1', (byte) ' ', (byte) '1', (byte) '0', (byte) '0', (byte) ' ', (byte) 'C', (byte) 'o', (byte) 'n', (byte) 't', (byte) 'i', (byte) 'n', (byte) 'u', (byte) 'e', (byte) '\r', (byte) '\n', (byte) '\r', (byte) '\n' }; } |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.