Skip to content

Commit c70c8b4

Browse files
committed
MT#55283 move flags processing to new file
Change-Id: I9058f18573993f193a61b82d038b2d08af81856c
1 parent d2b99ac commit c70c8b4

8 files changed

Lines changed: 2434 additions & 2397 deletions

File tree

daemon/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ LDLIBS+= $(LDLIBS_MQTT)
8686

8787
SRCS= main.c kernel.c helpers.c control_tcp.c call.c control_udp.c redis.c \
8888
cookie_cache.c udp_listener.c control_ng_flags_parser.c control_ng.strhash.c sdp.strhash.c stun.c rtcp.c \
89-
crypto.c rtp.c call_interfaces.strhash.c dtls.c log.c cli.strhash.c graphite.c ice.c \
89+
crypto.c rtp.c call_interfaces.c dtls.c log.c cli.strhash.c graphite.c ice.c \
9090
media_socket.c homer.c recording.c statistics.c cdr.c ssrc.c iptables.c tcp_listener.c \
9191
codec.c load.c dtmf.c timerthread.c media_player.c jitter_buffer.c t38.c websocket.c \
92-
mqtt.c janus.strhash.c audio_player.c arena.c ng_client.c
92+
mqtt.c janus.strhash.c audio_player.c arena.c ng_client.c call_flags.strhash.c
9393
ifneq ($(without_nftables),yes)
9494
SRCS+= nftables.c
9595
endif

daemon/call.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6646,3 +6646,9 @@ bool monologue_call_create_answer(struct call_monologue *ml, sdp_ng_flags *flags
66466646

66476647
return true;
66486648
}
6649+
6650+
6651+
void call_unlock_release(call_t *c) {
6652+
rwlock_unlock_w(&c->master_lock);
6653+
obj_put(c);
6654+
}

0 commit comments

Comments
 (0)