Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 1036:b87f97f6418a
minor
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Thu, 03 Nov 2016 21:42:41 -0600 |
| parents | 898774c2cd87 |
| children | b71ad168fe34 |
comparison
equal
deleted
inserted
replaced
| 1035:898774c2cd87 | 1036:b87f97f6418a |
|---|---|
| 635 handleRequest(); | 635 handleRequest(); |
| 636 else | 636 else |
| 637 _delayedHandling = true; | 637 _delayedHandling = true; |
| 638 } | 638 } |
| 639 | 639 |
| 640 private void content(Buffer buffer) throws IOException | 640 private void content() throws IOException |
| 641 { | 641 { |
| 642 if (_delayedHandling) | 642 if (_delayedHandling) |
| 643 { | 643 { |
| 644 _delayedHandling = false; | 644 _delayedHandling = false; |
| 645 handleRequest(); | 645 handleRequest(); |
| 680 { | 680 { |
| 681 AbstractHttpConnection.this.headerComplete(); | 681 AbstractHttpConnection.this.headerComplete(); |
| 682 } | 682 } |
| 683 | 683 |
| 684 @Override | 684 @Override |
| 685 public void content(Buffer ref) throws IOException | 685 public void content() throws IOException |
| 686 { | 686 { |
| 687 AbstractHttpConnection.this.content(ref); | 687 AbstractHttpConnection.this.content(); |
| 688 } | 688 } |
| 689 | 689 |
| 690 @Override | 690 @Override |
| 691 public void messageComplete(long contentLength) throws IOException | 691 public void messageComplete(long contentLength) throws IOException |
| 692 { | 692 { |
