Chromium Code Reviews| 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. |
|
brettw
2011/09/01 16:49:19
Can you expand on this comment to describe what it
Sergey Ulanov
2011/09/03 21:10:02
I extended comments for this option in ppb_transpo
|
| + bool tcp_no_delay; |
| + |
| + // TCP ACK delay. |
| + int tcp_ack_delay_ms; |
| }; |
| virtual ~P2PTransport() {} |