Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Connector.java @ 893:d1c302afeeb6
remove _confidentialPort
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 06 Oct 2016 23:36:34 -0600 |
parents | 093460816905 |
children | c33a99fca826 |
comparison
equal
deleted
inserted
replaced
892:093460816905 | 893:d1c302afeeb6 |
---|---|
61 | 61 |
62 public final Server server; | 62 public final Server server; |
63 private String _host; | 63 private String _host; |
64 public final int port; | 64 public final int port; |
65 private String _confidentialScheme = HttpSchemes.HTTPS; | 65 private String _confidentialScheme = HttpSchemes.HTTPS; |
66 private int _confidentialPort = 0; | |
67 private int _acceptors = 1; | 66 private int _acceptors = 1; |
68 private int _acceptorPriorityOffset = 0; | 67 private int _acceptorPriorityOffset = 0; |
69 private boolean _useDNS; | 68 private boolean _useDNS; |
70 private String _hostHeader; | 69 private String _hostHeader; |
71 | 70 |
341 public void persist(EndPoint endpoint) throws IOException | 340 public void persist(EndPoint endpoint) throws IOException |
342 { | 341 { |
343 } | 342 } |
344 | 343 |
345 /* ------------------------------------------------------------ */ | 344 /* ------------------------------------------------------------ */ |
346 /* | |
347 * @see org.eclipse.jetty.server.Connector#getConfidentialPort() | |
348 */ | |
349 public int getConfidentialPort() | |
350 { | |
351 return _confidentialPort; | |
352 } | |
353 | |
354 /* ------------------------------------------------------------ */ | |
355 /* ------------------------------------------------------------ */ | 345 /* ------------------------------------------------------------ */ |
356 /* | 346 /* |
357 * @see org.eclipse.jetty.server.Connector#getConfidentialScheme() | 347 * @see org.eclipse.jetty.server.Connector#getConfidentialScheme() |
358 */ | 348 */ |
359 public String getConfidentialScheme() | 349 public String getConfidentialScheme() |
366 * @see org.eclipse.jetty.server.Connector#isConfidential(org.eclipse.jetty.server.Request) | 356 * @see org.eclipse.jetty.server.Connector#isConfidential(org.eclipse.jetty.server.Request) |
367 */ | 357 */ |
368 public boolean isConfidential(Request request) | 358 public boolean isConfidential(Request request) |
369 { | 359 { |
370 return false; | 360 return false; |
371 } | |
372 | |
373 /* ------------------------------------------------------------ */ | |
374 /** | |
375 * @param confidentialPort | |
376 * The confidentialPort to set. | |
377 */ | |
378 public void setConfidentialPort(int confidentialPort) | |
379 { | |
380 _confidentialPort = confidentialPort; | |
381 } | 361 } |
382 | 362 |
383 /* ------------------------------------------------------------ */ | 363 /* ------------------------------------------------------------ */ |
384 /** | 364 /** |
385 * @param confidentialScheme | 365 * @param confidentialScheme |