sessionIdSet() — netty Function Reference
Architecture documentation for the sessionIdSet() function in SocketSslSessionReuseTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1fd40b44_9ff3_c6d7_f7b9_c4379dc00a6d["sessionIdSet()"] 833479b7_a1b1_3c02_8b20_02d1937b1c41["SocketSslSessionReuseTest"] 1fd40b44_9ff3_c6d7_f7b9_c4379dc00a6d -->|defined in| 833479b7_a1b1_3c02_8b20_02d1937b1c41 3dfa3b91_4810_54f7_0f98_7be1c3c2bd16["testSslSessionReuse()"] 3dfa3b91_4810_54f7_0f98_7be1c3c2bd16 -->|calls| 1fd40b44_9ff3_c6d7_f7b9_c4379dc00a6d style 1fd40b44_9ff3_c6d7_f7b9_c4379dc00a6d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslSessionReuseTest.java lines 278–286
private static Set<String> sessionIdSet(Enumeration<byte[]> sessionIds) {
Set<String> idSet = new HashSet<String>();
byte[] id;
while (sessionIds.hasMoreElements()) {
id = sessionIds.nextElement();
idSet.add(ByteBufUtil.hexDump(Unpooled.wrappedBuffer(id)));
}
return idSet;
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does sessionIdSet() do?
sessionIdSet() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslSessionReuseTest.java.
Where is sessionIdSet() defined?
sessionIdSet() is defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslSessionReuseTest.java at line 278.
What calls sessionIdSet()?
sessionIdSet() is called by 1 function(s): testSslSessionReuse.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free