]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Skinny: Allow to listen on ipv6
authorMathieu Parent <math.parent@gmail.com>
Fri, 25 Feb 2011 00:52:58 +0000 (01:52 +0100)
committerMathieu Parent <math.parent@gmail.com>
Fri, 25 Feb 2011 00:53:05 +0000 (01:53 +0100)
also allow to specify a blank ip which means: all

src/mod/endpoints/mod_skinny/mod_skinny.c

index 4061b945185dd875fb5f364ca20ea95e4d91185c..a30b0fd6665917745467fd842994c9e6dc10bf5d 100644 (file)
@@ -1524,7 +1524,7 @@ static void *SWITCH_THREAD_FUNC skinny_profile_run(switch_thread_t *thread, void
 new_socket:
        while(globals.running) {
                switch_clear_flag_locked(profile, PFLAG_RESPAWN);
-               rv = switch_sockaddr_info_get(&sa, profile->ip, SWITCH_INET, profile->port, 0, tmp_pool);
+               rv = switch_sockaddr_info_get(&sa, profile->ip, SWITCH_UNSPEC, profile->port, 0, tmp_pool);
                if (rv)
                        goto fail;
                rv = switch_socket_create(&profile->sock, switch_sockaddr_get_family(sa), SOCK_STREAM, SWITCH_PROTO_TCP, tmp_pool);
@@ -1663,7 +1663,7 @@ switch_status_t skinny_profile_set(skinny_profile_t *profile, const char *var, c
                profile->domain = switch_core_strdup(profile->pool, val);
        } else if (!strcasecmp(var, "ip")) {
                if (!profile->ip || strcmp(val, profile->ip)) {
-                       profile->ip = switch_core_strdup(profile->pool, val);
+                       profile->ip = switch_core_strdup(profile->pool, zstr(val) ? NULL : val);
                        switch_set_flag_locked(profile, PFLAG_SHOULD_RESPAWN);
                }
        } else if (!strcasecmp(var, "port")) {