update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9123 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
c395c05458
commit
e9b1555997
|
@ -493,6 +493,10 @@ SWITCH_DECLARE(switch_status_t) switch_stun_lookup(char **ip,
|
||||||
if (funny) {
|
if (funny) {
|
||||||
packet = (switch_stun_packet_t *) buf;
|
packet = (switch_stun_packet_t *) buf;
|
||||||
bytes += 4;
|
bytes += 4;
|
||||||
|
buf[bytes++] = 0;
|
||||||
|
buf[bytes++] = 0;
|
||||||
|
buf[bytes++] = 0;
|
||||||
|
buf[bytes++] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_socket_sendto(sock, remote_addr, 0, (void *) packet, &bytes);
|
switch_socket_sendto(sock, remote_addr, 0, (void *) packet, &bytes);
|
||||||
|
@ -534,6 +538,10 @@ SWITCH_DECLARE(switch_status_t) switch_stun_lookup(char **ip,
|
||||||
switch (attr->type) {
|
switch (attr->type) {
|
||||||
case SWITCH_STUN_ATTR_MAPPED_ADDRESS:
|
case SWITCH_STUN_ATTR_MAPPED_ADDRESS:
|
||||||
if (attr->type) {
|
if (attr->type) {
|
||||||
|
if(funny)
|
||||||
|
{
|
||||||
|
((switch_stun_ip_t *) attr->value)->address ^= ntohl(0xabcdabcd);
|
||||||
|
}
|
||||||
switch_stun_packet_attribute_get_mapped_address(attr, rip, &rport);
|
switch_stun_packet_attribute_get_mapped_address(attr, rip, &rport);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue