ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/coyote/http11/upgrade/InternalHttpUpgradeHandler.java

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

      
    
Rootfs path

      
    
Size
2541 (2.5 KB)
MD5
6d63c85cac357ee800c4919b831c9ef2
SHA1
dec44948c0c0da87c55001fd864a9b4ad1138ddb
SHA256
f1b5c6634ddf0e1dead7cc20744668c054b119d0dbb8c5bdbb9d41091d57c715
SHA512

      
    
SHA1_git
99ecf1b83fbed1cd823890c43a99b39bd06b7d63
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
InternalHttpUpgradeHandler.java | 2.5 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.http11.upgrade; import jakarta.servlet.http.HttpUpgradeHandler; import org.apache.tomcat.util.net.AbstractEndpoint.Handler.SocketState; import org.apache.tomcat.util.net.SSLSupport; import org.apache.tomcat.util.net.SocketEvent; import org.apache.tomcat.util.net.SocketWrapperBase; /** * This Tomcat specific interface is implemented by handlers that require direct access to Tomcat's I/O layer rather * than going through the Servlet API. */ public interface InternalHttpUpgradeHandler extends HttpUpgradeHandler { /** * Process the specified event. * * @param status the event * * @return the status following the event */ SocketState upgradeDispatch(SocketEvent status); /** * Check for a possible timeout. * * @param now the time to use for the timeout check */ void timeoutAsync(long now); /** * Associate with the specified socket. * * @param wrapper the socket */ void setSocketWrapper(SocketWrapperBase<?> wrapper); /** * Associate with the specified SSL support. * * @param sslSupport the SSL support */ void setSslSupport(SSLSupport sslSupport); /** * Pause processing for the connection. */ void pause(); /** * @return {@code true} if able to process asynchronous IO, default is {@code false} */ default boolean hasAsyncIO() { return false; } /** * @return the associated upgrade information used to collect statistics for the connection */ default UpgradeInfo getUpgradeInfo() { return null; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
40.2
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