Home / Function/ isProtocolSupported() — netty Function Reference

isProtocolSupported() — netty Function Reference

Architecture documentation for the isProtocolSupported() function in OpenSsl.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  969eb638_9e79_3d0b_850e_5424c0426f79["isProtocolSupported()"]
  ed038636_6deb_9fdb_0fd6_26635e25e0e6["OpenSsl"]
  969eb638_9e79_3d0b_850e_5424c0426f79 -->|defined in| ed038636_6deb_9fdb_0fd6_26635e25e0e6
  08e8425c_02ad_d102_e133_8ace7f656fa4["defaultProtocols()"]
  08e8425c_02ad_d102_e133_8ace7f656fa4 -->|calls| 969eb638_9e79_3d0b_850e_5424c0426f79
  6024b928_41e9_d570_d968_8379f61d7d07["getProtocolBit()"]
  969eb638_9e79_3d0b_850e_5424c0426f79 -->|calls| 6024b928_41e9_d570_d968_8379f61d7d07
  style 969eb638_9e79_3d0b_850e_5424c0426f79 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/OpenSsl.java lines 836–839

    static boolean isProtocolSupported(String protocol) {
        int bit = getProtocolBit(protocol);
        return bit != -1 && (supportedProtocolsPacked & bit) != 0;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does isProtocolSupported() do?
isProtocolSupported() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/OpenSsl.java.
Where is isProtocolSupported() defined?
isProtocolSupported() is defined in handler/src/main/java/io/netty/handler/ssl/OpenSsl.java at line 836.
What does isProtocolSupported() call?
isProtocolSupported() calls 1 function(s): getProtocolBit.
What calls isProtocolSupported()?
isProtocolSupported() is called by 1 function(s): defaultProtocols.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free