Index: webrtc/base/socket.h |
diff --git a/webrtc/base/socket.h b/webrtc/base/socket.h |
index 22326cb997a1a0aa3ca6388d5746dba950e77434..88c4aaa8b99455e381939510936bf22ea4c784ed 100644 |
--- a/webrtc/base/socket.h |
+++ b/webrtc/base/socket.h |
@@ -124,6 +124,8 @@ inline bool IsBlockingError(int e) { |
return (e == EWOULDBLOCK) || (e == EAGAIN) || (e == EINPROGRESS); |
} |
+typedef uint32_t NetworkHandle; |
+ |
struct SentPacket { |
SentPacket() : packet_id(-1), send_time_ms(-1) {} |
SentPacket(int packet_id, int64_t send_time_ms) |