Index: jingle/glue/pseudotcp_adapter.h |
diff --git a/jingle/glue/pseudotcp_adapter.h b/jingle/glue/pseudotcp_adapter.h |
index e53d722e3657ef9865fa6e041ac437b1011f6b60..643af3f54e0debd368e11e7d7876a26a57c8b5ea 100644 |
--- a/jingle/glue/pseudotcp_adapter.h |
+++ b/jingle/glue/pseudotcp_adapter.h |
@@ -52,6 +52,12 @@ class PseudoTcpAdapter : public net::StreamSocket, base::NonThreadSafe { |
virtual int64 NumBytesRead() const OVERRIDE; |
virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE; |
+ // Set the delay for sending ACK. |
+ void SetAckDelay(int delay_ms); |
+ |
+ // Set whether Nagle's algorithm is enabled. |
+ void SetNoDelay(bool nagling); |
Wez
2011/06/28 19:27:18
These should use the names that PseudoTcp uses, un
|
+ |
private: |
class Core; |