Correctly register for EPOLLRDHUP when construct EpollSocketChannel from FileDescriptor
Motivation: We missed to register for EPOLLRDHUP events when construct the EpollSocketChannel from an existing FileDescriptor. This could cause to miss connection-resets. Modifications: Add Native.EPOLLRDHUP to the events we are interested in. Result: Connection-resets are detected correctly.
This commit is contained in:
parent
3d6819623e
commit
22cea8a2cc
@ -92,6 +92,9 @@ public abstract class AbstractEpollStreamChannel extends AbstractEpollChannel {
|
||||
|
||||
protected AbstractEpollStreamChannel(FileDescriptor fd) {
|
||||
super(null, fd, Native.EPOLLIN, Native.getSoError(fd.intValue()) == 0);
|
||||
|
||||
// Add EPOLLRDHUP so we are notified once the remote peer close the connection.
|
||||
flags |= Native.EPOLLRDHUP;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user