]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Update to new sofia snapshot, includes fixes for 100 on notify, and for sdp not in...
authorAnthony Minessale <anthony.minessale@gmail.com>
Sat, 7 Oct 2006 18:54:29 +0000 (18:54 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Sat, 7 Oct 2006 18:54:29 +0000 (18:54 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2993 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/Makefile
src/mod/endpoints/mod_sofia/mod_sofia.c

index 0066d022782f6957e0e6d44bbb3e4dcb2af3f80d..f8c05f8e5ea4d50a9b9c857c3ecbf1ab14d54dd3 100644 (file)
@@ -1,6 +1,6 @@
 OS_ARCH         := $(subst /,_,$(shell uname -s | sed /\ /s//_/))
 VERSION = sofia-sip-1.12
-TARBALL = sofia-sip-1.12.3.tar.gz
+TARBALL = sofia-sip-1.12.3.2.tar.gz
 CFLAGS += -I. -I$(PREFIX)/include/$(VERSION)
 LDFLAGS += -lsofia-sip-ua
 LINKER=$(CC)
index 7ab1e3a6766bdb9537556fb2b4b228d7840dec89..7d5fda97f378051f277c1786ee80a101331cdba8 100644 (file)
@@ -1992,7 +1992,7 @@ static void sip_i_state(int status,
                                                                switch_yield(10000);
                                                        }
 
-                                                       if ((b_private = nua_handle_fetch(bnh))) {
+                                                       if ((b_private = nua_handle_magic(bnh))) {
                                                                char *br_b = switch_channel_get_variable(channel, SWITCH_BRIDGE_VARIABLE);
                                                                char *br_a = switch_core_session_get_uuid(b_private->session);
 
@@ -2474,7 +2474,7 @@ static void sip_i_refer(nua_t *nua,
                                                sofia_private_t *b_private;
                                        
                                                switch_channel_set_variable(channel_a, SOFIA_REPLACES_HEADER, rep);     
-                                               if ((b_private = nua_handle_fetch(bnh))) {
+                                               if ((b_private = nua_handle_magic(bnh))) {
                                                        channel_b = switch_core_session_get_channel(b_private->session);
                                
                                                        br_a = switch_channel_get_variable(channel_a, SWITCH_BRIDGE_VARIABLE);