src/java.base/share/classes/sun/nio/ch/UnixDomainSocketChannelImpl.java
branchunixdomainchannels
changeset 59090 fb91b01624be
parent 59076 998df1368cca
child 59123 ddb8977e44da
equal deleted inserted replaced
59082:5e250ee9259e 59090:fb91b01624be
   147 
   147 
   148         private static Set<SocketOption<?>> defaultOptions() {
   148         private static Set<SocketOption<?>> defaultOptions() {
   149             HashSet<SocketOption<?>> set = new HashSet<>();
   149             HashSet<SocketOption<?>> set = new HashSet<>();
   150             set.add(StandardSocketOptions.SO_SNDBUF);
   150             set.add(StandardSocketOptions.SO_SNDBUF);
   151             set.add(StandardSocketOptions.SO_RCVBUF);
   151             set.add(StandardSocketOptions.SO_RCVBUF);
   152             set.add(StandardSocketOptions.SO_KEEPALIVE);
       
   153             set.add(StandardSocketOptions.SO_LINGER);
   152             set.add(StandardSocketOptions.SO_LINGER);
   154             return Collections.unmodifiableSet(set);
   153             return Collections.unmodifiableSet(set);
   155         }
   154         }
   156     }
   155     }
   157 
   156