Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/nio/BlockingChannelConnector.java @ 996:d9cfec64899c
simplify Connector
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 18 Oct 2016 21:22:53 -0600 |
parents | bdb6eb0fbf93 |
children | 39154cfa58e4 |
comparison
equal
deleted
inserted
replaced
995:0eba8f555c19 | 996:d9cfec64899c |
---|---|
134 | 134 |
135 @Override | 135 @Override |
136 public void customize(EndPoint endpoint, Request request) | 136 public void customize(EndPoint endpoint, Request request) |
137 throws IOException | 137 throws IOException |
138 { | 138 { |
139 super.customize(endpoint, request); | |
140 endpoint.setMaxIdleTime(_maxIdleTime); | 139 endpoint.setMaxIdleTime(_maxIdleTime); |
141 configure(endpoint.getChannel().socket()); | 140 configure(endpoint.getChannel().socket()); |
142 } | 141 } |
143 | 142 |
144 | 143 |