]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
If IP address is used in chan_h323 host parameter of peer configuration.
authorGregory Nietsky <gregory@distrotech.co.za>
Thu, 22 Sep 2011 09:22:26 +0000 (09:22 +0000)
committerGregory Nietsky <gregory@distrotech.co.za>
Thu, 22 Sep 2011 09:22:26 +0000 (09:22 +0000)
module tries to resolve IP address to IP address and fails.

Simple fix to set family of socket this is a hangover from ipv6 changes.

(closes issue ASTERISK-18237)
(issue ASTERISK-17278)
(issue ASTERISK-17500)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@337486 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_h323.c

index 8a2593265fd79ebc50cad75e2d7032bce665381a..622914a8de8637d0abb578477c117149e7454f23 100644 (file)
@@ -1550,6 +1550,7 @@ static struct oh323_peer *build_peer(const char *name, struct ast_variable *v, s
                        {
                                struct ast_sockaddr tmp;
 
+                               tmp.ss.ss_family = AF_INET;
                                if (ast_get_ip(&tmp, v->value)) {
                                        ast_log(LOG_ERROR, "Could not determine IP for %s\n", v->value);
                                        ASTOBJ_UNREF(peer, oh323_destroy_peer);