Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Unified Diff: sdk/lib/io/http_parser.dart

Issue 11316080: Change the HTTP close handling (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/io/http_parser.dart
diff --git a/sdk/lib/io/http_parser.dart b/sdk/lib/io/http_parser.dart
index c4e966e31bcc7ddbcf7a139e600ff1ea86a19949..f930c0fd37a8572518b1f4bd1eb9cadabf236a55 100644
--- a/sdk/lib/io/http_parser.dart
+++ b/sdk/lib/io/http_parser.dart
@@ -623,6 +623,8 @@ class _HttpParser {
// can close the connection and cause a connection reset by peer
// error which is OK.
if (_state == _State.START) {
+ print("$_requestParser $e");
Mads Ager (google) 2012/11/20 08:04:28 Remove debug print.
Søren Gjesse 2012/11/20 08:15:11 Done.
+
closed();
return;
}

Powered by Google App Engine
This is Rietveld 408576698