leaveGroup() — netty Function Reference
Architecture documentation for the leaveGroup() function in LinuxSocket.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 6ab70505_2fef_4120_bafe_110bee041290["leaveGroup()"] b60ae45e_66b1_2a0f_625b_421b64bfcb66["LinuxSocket"] 6ab70505_2fef_4120_bafe_110bee041290 -->|defined in| b60ae45e_66b1_2a0f_625b_421b64bfcb66 c4eb85f4_4317_7650_b11a_1bedfd2d2db0["leaveSsmGroup()"] 6ab70505_2fef_4120_bafe_110bee041290 -->|calls| c4eb85f4_4317_7650_b11a_1bedfd2d2db0 e153647a_353a_1569_6039_2670f6c0a5c4["interfaceIndex()"] 6ab70505_2fef_4120_bafe_110bee041290 -->|calls| e153647a_353a_1569_6039_2670f6c0a5c4 style 6ab70505_2fef_4120_bafe_110bee041290 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-io_uring/src/main/java/io/netty/channel/uring/LinuxSocket.java lines 119–130
void leaveGroup(InetAddress group, NetworkInterface netInterface, InetAddress source) throws IOException {
final NativeInetAddress g = NativeInetAddress.newInstance(group);
final boolean isIpv6 = group instanceof Inet6Address;
final NativeInetAddress i = NativeInetAddress.newInstance(deriveInetAddress(netInterface, isIpv6));
if (source != null) {
final NativeInetAddress s = NativeInetAddress.newInstance(source);
leaveSsmGroup(intValue(), ipv6, g.address(), i.address(),
g.scopeId(), interfaceIndex(netInterface), s.address());
} else {
leaveGroup(intValue(), ipv6, g.address(), i.address(), g.scopeId(), interfaceIndex(netInterface));
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does leaveGroup() do?
leaveGroup() is a function in the netty codebase, defined in transport-classes-io_uring/src/main/java/io/netty/channel/uring/LinuxSocket.java.
Where is leaveGroup() defined?
leaveGroup() is defined in transport-classes-io_uring/src/main/java/io/netty/channel/uring/LinuxSocket.java at line 119.
What does leaveGroup() call?
leaveGroup() calls 2 function(s): interfaceIndex, leaveSsmGroup.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free