]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Issue 8193 - NAT issues with gtalk/STUN. Patch by phsultan. Thanks!
authorOlle Johansson <oej@edvina.net>
Thu, 24 May 2007 15:20:54 +0000 (15:20 +0000)
committerOlle Johansson <oej@edvina.net>
Thu, 24 May 2007 15:20:54 +0000 (15:20 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@65892 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_gtalk.c

index 37f865b7c090418c09379b5c9c58987c8125ff70..1da9e8bfabcfdbb11ba32638e63dd3f6f2126695 100644 (file)
@@ -1126,6 +1126,7 @@ static int gtalk_update_stun(struct gtalk *client, struct gtalk_pvt *p)
        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 @@ static int gtalk_update_stun(struct gtalk *client, struct gtalk_pvt *p)
        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);
+                        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);
+               }
 
-               ast_rtp_stun_request(p->rtp, &sin, username);
                tmp = tmp->next;
        }
        return 1;