switch_stun_packet_attribute_t *attr;
char username[33] = { 0 };
unsigned char buf[512] = { 0 };
+ switch_size_t cpylen = len;
+
+ if (cpylen > 512) {
+ cpylen = 512;
+ }
- memcpy(buf, data, len);
+ memcpy(buf, data, cpylen);
packet = switch_stun_packet_parse(buf, sizeof(buf));
rtp_session->last_stun = switch_time_now();
return -1;
}
+ if (datalen > SWITCH_RTP_MAX_BUF_LEN) {
+ return -1;
+ }
+
send_msg = rtp_session->send_msg;
send_msg.header.seq = htons(mseq);
send_msg.header.ts = htonl(ts);