Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Connector.java @ 1001:39154cfa58e4
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 22 Oct 2016 20:56:41 -0600 |
parents | d9cfec64899c |
children | 0e96ce3db20a |
comparison
equal
deleted
inserted
replaced
1000:32d4b569567c | 1001:39154cfa58e4 |
---|---|
115 * these timeouts were merged. With the advent of NIO, it may be possible to again differentiate these values (if there is demand). | 115 * these timeouts were merged. With the advent of NIO, it may be possible to again differentiate these values (if there is demand). |
116 * | 116 * |
117 * @param maxIdleTime | 117 * @param maxIdleTime |
118 * The maxIdleTime to set. | 118 * The maxIdleTime to set. |
119 */ | 119 */ |
120 /* | |
121 public void setMaxIdleTime(int maxIdleTime) | |
122 { | |
123 _maxIdleTime = maxIdleTime; | |
124 } | |
125 */ | |
126 | 120 |
127 public final int getSoLingerTime() | 121 public final int getSoLingerTime() |
128 { | 122 { |
129 return _soLingerTime; | 123 return _soLingerTime; |
130 } | 124 } |
178 socket.setSoLinger(true,_soLingerTime / 1000); | 172 socket.setSoLinger(true,_soLingerTime / 1000); |
179 else | 173 else |
180 socket.setSoLinger(false,0); | 174 socket.setSoLinger(false,0); |
181 } | 175 } |
182 | 176 |
183 public abstract void customize(EndPoint endpoint, Request request) throws IOException; | 177 public abstract void customize(AbstractHttpConnection con) throws IOException; |
184 | 178 |
185 public boolean isConfidential() | 179 public boolean isConfidential() |
186 { | 180 { |
187 return false; | 181 return false; |
188 } | 182 } |