comparison src/org/eclipse/jetty/server/Connector.java @ 888:1aa58272794f

remove _acceptQueueSize
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 06 Oct 2016 23:12:00 -0600
parents df84a1741687
children 5731a7707466
comparison
equal deleted inserted replaced
887:df84a1741687 888:1aa58272794f
64 public final int port; 64 public final int port;
65 private String _integralScheme = HttpSchemes.HTTPS; 65 private String _integralScheme = HttpSchemes.HTTPS;
66 private int _integralPort = 0; 66 private int _integralPort = 0;
67 private String _confidentialScheme = HttpSchemes.HTTPS; 67 private String _confidentialScheme = HttpSchemes.HTTPS;
68 private int _confidentialPort = 0; 68 private int _confidentialPort = 0;
69 private int _acceptQueueSize = 0;
70 private int _acceptors = 1; 69 private int _acceptors = 1;
71 private int _acceptorPriorityOffset = 0; 70 private int _acceptorPriorityOffset = 0;
72 private boolean _useDNS; 71 private boolean _useDNS;
73 private boolean _forwarded; 72 private boolean _forwarded;
74 private String _hostHeader; 73 private String _hostHeader;
193 * @return Returns the soLingerTime. 192 * @return Returns the soLingerTime.
194 */ 193 */
195 public int getSoLingerTime() 194 public int getSoLingerTime()
196 { 195 {
197 return _soLingerTime; 196 return _soLingerTime;
198 }
199
200 /* ------------------------------------------------------------ */
201 /**
202 * @return Returns the acceptQueueSize.
203 */
204 public int getAcceptQueueSize()
205 {
206 return _acceptQueueSize;
207 }
208
209 /* ------------------------------------------------------------ */
210 /**
211 * @param acceptQueueSize
212 * The acceptQueueSize to set.
213 */
214 public void setAcceptQueueSize(int acceptQueueSize)
215 {
216 _acceptQueueSize = acceptQueueSize;
217 } 197 }
218 198
219 /* ------------------------------------------------------------ */ 199 /* ------------------------------------------------------------ */
220 /** 200 /**
221 * @return Returns the number of acceptor threads. 201 * @return Returns the number of acceptor threads.