Browse Source

MT#56374 move poller to lib/

Move poller.[ch] and obj.h to the shared lib code so that they can be
used by other components.

Change-Id: I99a58848b5f6b83e5930d7cda0e28dfe6bff5866
pull/1694/head
Richard Fuchs 2 years ago
parent
commit
ba7620d214
5 changed files with 3 additions and 2 deletions
  1. +1
    -0
      daemon/.gitignore
  2. +2
    -2
      daemon/Makefile
  3. +0
    -0
      lib/obj.h
  4. +0
    -0
      lib/poller.c
  5. +0
    -0
      lib/poller.h

+ 1
- 0
daemon/.gitignore View File

@ -26,3 +26,4 @@ mix_buffer.c
mix_in_x64_avx2.S
mix_in_x64_avx512bw.S
mix_in_x64_sse2.S
poller.c

+ 2
- 2
daemon/Makefile View File

@ -78,13 +78,13 @@ endif
include ../lib/mqtt.Makefile
SRCS= main.c kernel.c poller.c helpers.c control_tcp.c call.c control_udp.c redis.c \
SRCS= main.c kernel.c helpers.c control_tcp.c call.c control_udp.c redis.c \
bencode.c cookie_cache.c udp_listener.c control_ng.strhash.c sdp.strhash.c stun.c rtcp.c \
crypto.c rtp.c call_interfaces.strhash.c dtls.c log.c cli.c graphite.c ice.c \
media_socket.c homer.c recording.c statistics.c cdr.c ssrc.c iptables.c tcp_listener.c \
codec.c load.c dtmf.c timerthread.c media_player.c jitter_buffer.c t38.c websocket.c \
mqtt.c janus.strhash.c audio_player.c
LIBSRCS= loglib.c auxlib.c rtplib.c str.c socket.c streambuf.c ssllib.c dtmflib.c mix_buffer.c
LIBSRCS= loglib.c auxlib.c rtplib.c str.c socket.c streambuf.c ssllib.c dtmflib.c mix_buffer.c poller.c
ifeq ($(with_transcoding),yes)
LIBSRCS+= codeclib.strhash.c resample.c
LIBASM= mvr2s_x64_avx2.S mvr2s_x64_avx512.S mix_in_x64_avx2.S mix_in_x64_avx512bw.S mix_in_x64_sse2.S


include/obj.h → lib/obj.h View File


daemon/poller.c → lib/poller.c View File


include/poller.h → lib/poller.h View File


Loading…
Cancel
Save