mirror of
https://github.com/corda/corda.git
synced 2025-06-14 13:18:18 +00:00
fix regression in SocketSelector when selecting ServerSocketChannels
This commit is contained in:
@ -23,6 +23,10 @@ public class ServerSocketChannel extends SelectableChannel {
|
||||
return new ServerSocketChannel();
|
||||
}
|
||||
|
||||
public int socketFD() {
|
||||
return channel.socketFD();
|
||||
}
|
||||
|
||||
public SelectableChannel configureBlocking(boolean v) throws IOException {
|
||||
return channel.configureBlocking(v);
|
||||
}
|
||||
|
Reference in New Issue
Block a user