Skip to content

Commit

Permalink
ua,call: add API for rejecting incoming call (#57)
Browse files Browse the repository at this point in the history
* add module redirect

* redirect: fix parsing of command params

* redirect: correct SIP reply

* redirect: add debug command

* redirect: add command call_redirect

* redirect: rename ua_reject to ua_hangupf
  • Loading branch information
cspiel1 authored Dec 2, 2024
1 parent 0b25d61 commit bcecead
Show file tree
Hide file tree
Showing 3 changed files with 422 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmake/modules.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ set(MODULES
parcall
qualify
multicast
redirect
)

if(FVAD_FOUND)
Expand Down
10 changes: 10 additions & 0 deletions modules/redirect/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
project(redirect)

set(SRCS redirect.c)

if(STATIC)
add_library(${PROJECT_NAME} OBJECT ${SRCS})
else()
add_library(${PROJECT_NAME} MODULE ${SRCS})
endif()

Loading

0 comments on commit bcecead

Please sign in to comment.