Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/Connector.java @ 948:f5aefdc4a81a
simplify SelectChannelConnector
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 11 Oct 2016 22:16:29 -0600 |
parents | 54308d65265a |
children | a021c4c9c244 |
comparison
equal
deleted
inserted
replaced
947:64f3d8dae31d | 948:f5aefdc4a81a |
---|---|
63 public final Server server; | 63 public final Server server; |
64 private String _host; | 64 private String _host; |
65 public final int port; | 65 public final int port; |
66 private int _acceptors = 1; | 66 private int _acceptors = 1; |
67 | 67 |
68 protected int _maxIdleTime = 200000; | 68 protected final int _maxIdleTime = 200000; |
69 protected int _soLingerTime = -1; | 69 protected int _soLingerTime = -1; |
70 | 70 |
71 protected final HttpBuffersImpl _buffers = new HttpBuffersImpl(); | 71 protected final HttpBuffersImpl _buffers = new HttpBuffersImpl(); |
72 | 72 |
73 // from child classes | 73 // from child classes |