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

Unified Diff: webkit/glue/p2p_transport.h

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 | « ppapi/tests/test_transport.cc ('k') | webkit/glue/p2p_transport.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/p2p_transport.h
diff --git a/webkit/glue/p2p_transport.h b/webkit/glue/p2p_transport.h
index 652117e75d2b98e99ef0c6b2147196add7b4ee9d..7795344c8e567772faa6c4b86099be6a938d9e20 100644
--- a/webkit/glue/p2p_transport.h
+++ b/webkit/glue/p2p_transport.h
@@ -62,6 +62,12 @@ class P2PTransport {
// TCP window sizes. Default size is used when set to 0.
int tcp_receive_window;
int tcp_send_window;
+
+ // Disables Neagle's algorithm when set to true.
+ bool tcp_no_delay;
+
+ // TCP ACK delay.
+ int tcp_ack_delay_ms;
};
virtual ~P2PTransport() {}
« no previous file with comments | « ppapi/tests/test_transport.cc ('k') | webkit/glue/p2p_transport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698