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
MT#55283 allow "closed" callbacks during shutdown
Change-Id: I55cd49e808bdaa2b15f54c09b8a8b954c8262798
pull/1826/head
Richard Fuchs
2 years ago
parent
c7a8f78d81
commit
2c2b7fa4c3
2 changed files
with
4 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
daemon/tcp_listener.c
+2
-1
daemon/udp_listener.c
+ 2
- 1
daemon/tcp_listener.c
View File
@ -58,7 +58,8 @@ static void tcp_listener_incoming(int fd, void *p) {
}
static
void
tcp_listener_closed
(
int
fd
,
void
*
p
)
{
abort
(
)
;
if
(
!
rtpe_shutdown
)
abort
(
)
;
}
static
void
__tlc_free
(
void
*
p
)
{
+ 2
- 1
daemon/udp_listener.c
View File
@ -24,7 +24,8 @@ struct udp_listener_callback {
}
;
static
void
udp_listener_closed
(
int
fd
,
void
*
p
)
{
abort
(
)
;
if
(
!
rtpe_shutdown
)
abort
(
)
;
}
static
void
udp_listener_incoming
(
int
fd
,
void
*
p
)
{
Write
Preview
Loading…
Cancel
Save