Dmitry Potapov created HTTPCORE-377:
---------------------------------------
Summary: Allow to enable SO_LINGER option with zero timeout
Key: HTTPCORE-377
URL: https://issues.apache.org/jira/browse/HTTPCORE-377
Project: HttpComponents HttpCore
Issue Type: Improvement
Components: HttpCore, HttpCore NIO
Affects Versions: 4.3.2
Reporter: Dmitry Potapov
Priority: Minor
Attachments: httpcore-enable-linger.patch
According to
http://docs.oracle.com/javase/8/docs/api/java/net/StandardSocketOptions.html#SO_LINGER
linger option is disabled by default. Currently if SocketConfig.soLinger is
set to zero (default value is -1), then Socket.setSoLinger(false, 0) will be
called, so linger will be disabled, which is undesirable. My suggestion is
interpret zero soLinger value as Socket.setSoLinger(true, 0).
I understand that this change will break backward compatibility of config
interpretation, but can we have this in 4.4?
--
This message was sent by Atlassian JIRA
(v6.2#6252)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]