There are some processes in the DLedgerRpcNettyService.java that do not support IPv6, for example:
nettyServerConfig.setListenPort(Integer.parseInt(address.split(":")[1]));
When the address is an IPv6 address, such as [fd15:4ba5:5a2b:1008::9:5]:30921, the parse will fail and an exception occurs.
Suggest to support IPv6 as soon as possible and conduct comprehensive test verification, thank you
There are some processes in the DLedgerRpcNettyService.java that do not support IPv6, for example:
nettyServerConfig.setListenPort(Integer.parseInt(address.split(":")[1]));
When the address is an IPv6 address, such as [fd15:4ba5:5a2b:1008::9:5]:30921, the parse will fail and an exception occurs.
Suggest to support IPv6 as soon as possible and conduct comprehensive test verification, thank you