SSLContext_set1_groups_list() — netty Function Reference
Architecture documentation for the SSLContext_set1_groups_list() function in BoringSSL.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9c2f9a55_2465_8e3a_3061_a6b7b0dd0a70["SSLContext_set1_groups_list()"] 1df1ee72_d088_6e8a_ed64_d1236e26b4d5["BoringSSL"] 9c2f9a55_2465_8e3a_3061_a6b7b0dd0a70 -->|defined in| 1df1ee72_d088_6e8a_ed64_d1236e26b4d5 style 9c2f9a55_2465_8e3a_3061_a6b7b0dd0a70 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSL.java lines 88–103
static int SSLContext_set1_groups_list(long ctx, String... groups) {
if (groups == null) {
throw new NullPointerException("curves");
}
if (groups.length == 0) {
throw new IllegalArgumentException();
}
StringBuilder sb = new StringBuilder();
for (String group: groups) {
sb.append(group);
// Groups are separated by : as explained in the manpage.
sb.append(':');
}
sb.setLength(sb.length() - 1);
return SSLContext_set1_groups_list(ctx, sb.toString());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does SSLContext_set1_groups_list() do?
SSLContext_set1_groups_list() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSL.java.
Where is SSLContext_set1_groups_list() defined?
SSLContext_set1_groups_list() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSL.java at line 88.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free