Created
July 23, 2022 00:37
-
-
Save zeroFruit/bb72667abd61721dce210067dae8aec7 to your computer and use it in GitHub Desktop.
Revisions
-
zeroFruit created this gist
Jul 23, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ public class LocalServerChannel extends AbstractServerChannel { ... private class LocalServerInternal extends AbstractInternal { @Override public void doBind(SocketAddress localAddress) { ObjectUtil.checkNotNull(localAddress, "localAddress"); LocalServerChannel.this.localAddress = LocalChannelRegistry.register(LocalServerChannel.this, localAddress); state = State.BOUND; } } }