Index: webrtc/p2p/base/portinterface.h |
diff --git a/webrtc/p2p/base/portinterface.h b/webrtc/p2p/base/portinterface.h |
index 0c5948e8aeb149e1a11147c1286b14d90d645274..0f77036ac12649dcf3370d9e43a9cc0e70eb5583 100644 |
--- a/webrtc/p2p/base/portinterface.h |
+++ b/webrtc/p2p/base/portinterface.h |
@@ -14,6 +14,7 @@ |
#include <string> |
#include "webrtc/p2p/base/transport.h" |
+#include "webrtc/base/asyncpacketsocket.h" |
#include "webrtc/base/socketaddress.h" |
namespace rtc { |
@@ -112,6 +113,9 @@ class PortInterface { |
sigslot::signal4<PortInterface*, const char*, size_t, |
const rtc::SocketAddress&> SignalReadPacket; |
+ // Emitted each time a packet is sent on this port. |
+ sigslot::signal2<PortInterface*, const rtc::SentPacket&> SignalSentPacket; |
+ |
virtual std::string ToString() const = 0; |
protected: |