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

Unified Diff: trunk/src/net/tools/quic/quic_server.cc

Issue 16374004: Revert 204046 "Land Recent QUIC changes." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 6 months 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: trunk/src/net/tools/quic/quic_server.cc
===================================================================
--- trunk/src/net/tools/quic/quic_server.cc (revision 204061)
+++ trunk/src/net/tools/quic/quic_server.cc (working copy)
@@ -170,12 +170,14 @@
}
}
if (event->in_events & EPOLLOUT) {
+ LOG(INFO) << "Epollout";
bool can_write_more = dispatcher_->OnCanWrite();
if (can_write_more) {
event->out_ready_mask |= EPOLLOUT;
}
}
if (event->in_events & EPOLLERR) {
+ LOG(INFO) << "Epollerr";
}
}
« no previous file with comments | « trunk/src/net/tools/quic/quic_epoll_connection_helper_test.cc ('k') | trunk/src/net/tools/quic/quic_server_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698