ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/coyote/Constants.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/coyote/Constants.java
Status
scanned
Type
file
Name
Constants.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
3993 (3.9 KB)
MD5
411818bf7bc9f8c16ff6bc6b834c6cf1
SHA1
a8db158c8e947610ddfc2bfac09c1fb7cd11cd3a
SHA256
ab9ac83334fca38e20c7c67428fb576112a1a5df7e48c05bbf4919a28459c8b7
SHA512

      
    
SHA1_git
55e69aba465c6c5a90a5dbb4df1a70697f2f2991
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
Constants.java | 3.9 KB |

/* * 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. */ package org.apache.coyote; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; /** * Constants. */ public final class Constants { public static final Charset DEFAULT_URI_CHARSET = StandardCharsets.UTF_8; public static final Charset DEFAULT_BODY_CHARSET = StandardCharsets.ISO_8859_1; public static final int MAX_NOTES = 32; // Request states public static final int STAGE_NEW = 0; public static final int STAGE_PARSE = 1; public static final int STAGE_PREPARE = 2; public static final int STAGE_SERVICE = 3; public static final int STAGE_ENDINPUT = 4; public static final int STAGE_ENDOUTPUT = 5; public static final int STAGE_KEEPALIVE = 6; public static final int STAGE_ENDED = 7; // Default protocol settings public static final int DEFAULT_CONNECTION_LINGER = -1; public static final boolean DEFAULT_TCP_NO_DELAY = true; /** * The request attribute that is set to the value of {@code Boolean.TRUE} if connector processing this request * supports use of sendfile. */ public static final String SENDFILE_SUPPORTED_ATTR = "org.apache.tomcat.sendfile.support"; /** * The request attribute that can be used by a servlet to pass to the connector the name of the file that is to be * served by sendfile. The value should be {@code String} that is {@code File.getCanonicalPath()} of the file to be * served. */ public static final String SENDFILE_FILENAME_ATTR = "org.apache.tomcat.sendfile.filename"; /** * The request attribute that can be used by a servlet to pass to the connector the start offset of the part of a * file that is to be served by sendfile. The value should be {@code java.lang.Long}. To serve complete file the * value should be {@code Long.valueOf(0)}. */ public static final String SENDFILE_FILE_START_ATTR = "org.apache.tomcat.sendfile.start"; /** * The request attribute that can be used by a servlet to pass to the connector the end offset (not including) of * the part of a file that is to be served by sendfile. The value should be {@code java.lang.Long}. To serve * complete file the value should be equal to the length of the file. */ public static final String SENDFILE_FILE_END_ATTR = "org.apache.tomcat.sendfile.end"; /** * The request attribute set by the RemoteIpFilter, RemoteIpValve (and may be set by other similar components) that * identifies for the connector the remote IP address claimed to be associated with this request when a request is * received via one or more proxies. It is typically provided via the X-Forwarded-For HTTP header. */ public static final String REMOTE_ADDR_ATTRIBUTE = "org.apache.tomcat.remoteAddr"; /** * The request attribute set by the RemoteIpFilter, RemoteIpValve (and may be set by other similar components) that * identifies for the connector the connection peer IP address. */ public static final String PEER_ADDR_ATTRIBUTE = "org.apache.tomcat.peerAddr"; }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
21.25
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9