Update talk to 61699344.

TBR=wu@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/8809004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5560 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/talk/base/asyncpacketsocket.h b/talk/base/asyncpacketsocket.h
index 4fcc271..b1d5a4a 100644
--- a/talk/base/asyncpacketsocket.h
+++ b/talk/base/asyncpacketsocket.h
@@ -45,10 +45,12 @@
         srtp_packet_index(-1) {
   }
 
-  int rtp_sendtime_extension_id;  // extension header id present in packet.
-  Buffer srtp_auth_key;           // Authentication key.
-  int srtp_auth_tag_len;          // Authentication tag length.
-  int64 srtp_packet_index;        // Required for Rtp Packet authentication.
+  int rtp_sendtime_extension_id;    // extension header id present in packet.
+  std::vector<char> srtp_auth_key;  // Authentication key.
+  int srtp_auth_tag_len;            // Authentication tag length.
+  int64 srtp_packet_index;          // Required for Rtp Packet authentication.
+  int payload_len;                  // Raw payload length, before any wrapping
+                                    // like TURN/GTURN.
 };
 
 // This structure holds meta information for the packet which is about to send