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

Unified Diff: webkit/glue/p2p_transport.cc

Issue 7820008: Add TCP configuration parameters for Transport API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 3 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
« no previous file with comments | « webkit/glue/p2p_transport.h ('k') | webkit/plugins/ppapi/ppb_transport_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/p2p_transport.cc
diff --git a/webkit/glue/p2p_transport.cc b/webkit/glue/p2p_transport.cc
index 33d824ff95703870a87909398e87a897286124f0..a4c518bda2cd37ac5b45d023d6b60e694a8e66e9 100644
--- a/webkit/glue/p2p_transport.cc
+++ b/webkit/glue/p2p_transport.cc
@@ -10,7 +10,9 @@ P2PTransport::Config::Config()
: stun_server_port(0),
relay_server_port(0),
tcp_receive_window(0),
- tcp_send_window(0) {
+ tcp_send_window(0),
+ tcp_no_delay(false),
+ tcp_ack_delay_ms(0) {
}
P2PTransport::Config::~Config() {
« no previous file with comments | « webkit/glue/p2p_transport.h ('k') | webkit/plugins/ppapi/ppb_transport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698