[asterisk-commits] oej: branch 1.4 r65892 -
/branches/1.4/channels/chan_gtalk.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Thu May 24 08:20:55 MST 2007
Author: oej
Date: Thu May 24 10:20:54 2007
New Revision: 65892
URL: http://svn.digium.com/view/asterisk?view=rev&rev=65892
Log:
Issue 8193 - NAT issues with gtalk/STUN. Patch by phsultan. Thanks!
Modified:
branches/1.4/channels/chan_gtalk.c
Modified: branches/1.4/channels/chan_gtalk.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_gtalk.c?view=diff&rev=65892&r1=65891&r2=65892
==============================================================================
--- branches/1.4/channels/chan_gtalk.c (original)
+++ branches/1.4/channels/chan_gtalk.c Thu May 24 10:20:54 2007
@@ -1126,6 +1126,7 @@
struct hostent *hp;
struct ast_hostent ahp;
struct sockaddr_in sin;
+ struct sockaddr_in aux;
if (time(NULL) == p->laststun)
return 0;
@@ -1134,14 +1135,32 @@
p->laststun = time(NULL);
while (tmp) {
char username[256];
+
+ /* Find the IP address of the host */
hp = ast_gethostbyname(tmp->ip, &ahp);
sin.sin_family = AF_INET;
memcpy(&sin.sin_addr, hp->h_addr, sizeof(sin.sin_addr));
sin.sin_port = htons(tmp->port);
snprintf(username, sizeof(username), "%s%s", tmp->username,
- p->ourcandidates->username);
-
- ast_rtp_stun_request(p->rtp, &sin, username);
+ p->ourcandidates->username);
+
+ /* Find out the result of the STUN */
+ ast_rtp_get_peer(p->rtp, &aux);
+
+ /* If the STUN result is different from the IP of the hostname,
+ lock on the stun IP of the hostname advertised by the
+ remote client */
+ if (aux.sin_addr.s_addr &&
+ aux.sin_addr.s_addr != sin.sin_addr.s_addr)
+ ast_rtp_stun_request(p->rtp, &aux, username);
+ else
+ ast_rtp_stun_request(p->rtp, &sin, username);
+
+ if (aux.sin_addr.s_addr && option_debug > 3) {
+ ast_log(LOG_DEBUG, "Receiving RTP traffic from IP %s, matches with remote candidate's IP %s\n", ast_inet_ntoa(aux.sin_addr), tmp->ip);
+ ast_log(LOG_DEBUG, "Sending STUN request to %s\n", tmp->ip);
+ }
+
tmp = tmp->next;
}
return 1;
More information about the asterisk-commits
mailing list