This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
don't retry XMLRPC callback if endpoint says the ID was not found
Change-Id: I943f8738e1c92345fc983a3a8ab7d61d00b924ad
changes/63/21163/3
Richard Fuchs
8 years ago
parent
68e8092098
commit
539e063992
1 changed files
with
6 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-2
daemon/call.c
+ 6
- 2
daemon/call.c
View File
@ -369,8 +369,12 @@ retry:
if
(
r
)
xmlrpc_DECREF
(
r
)
;
if
(
e
.
fault_occurred
)
goto
fault
;
if
(
e
.
fault_occurred
)
{
if
(
strcasestr
(
e
.
fault_string
,
"
dialog not found
"
)
)
;
else
goto
fault
;
}
xmlrpc_client_destroy
(
c
)
;
xh
-
>
tags_urls
=
g_slist_delete_link
(
xh
-
>
tags_urls
,
xh
-
>
tags_urls
)
;
Write
Preview
Loading…
Cancel
Save