Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/AsyncHttpConnection.java @ 978:bdb6eb0fbf93
simplify ChannelEndPoint
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 16 Oct 2016 14:53:43 -0600 |
parents | d35b0a3a7a4a |
children | 21910079096e |
comparison
equal
deleted
inserted
replaced
977:d35b0a3a7a4a | 978:bdb6eb0fbf93 |
---|---|
143 LOG.info("EndPoint making no progress: "+_total_no_progress+" "+_endp+" "+this); | 143 LOG.info("EndPoint making no progress: "+_total_no_progress+" "+_endp+" "+this); |
144 if (NO_PROGRESS_CLOSE>0 && _total_no_progress==NO_PROGRESS_CLOSE) | 144 if (NO_PROGRESS_CLOSE>0 && _total_no_progress==NO_PROGRESS_CLOSE) |
145 { | 145 { |
146 LOG.warn("Closing EndPoint making no progress: "+_total_no_progress+" "+_endp+" "+this); | 146 LOG.warn("Closing EndPoint making no progress: "+_total_no_progress+" "+_endp+" "+this); |
147 if (_endp instanceof SelectChannelEndPoint) | 147 if (_endp instanceof SelectChannelEndPoint) |
148 ((SelectChannelEndPoint)_endp).getChannel().close(); | 148 _endp.getChannel().close(); |
149 } | 149 } |
150 } | 150 } |
151 } | 151 } |
152 } | 152 } |
153 | 153 |