-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ua,call: add API for rejecting incoming call (#57)
* 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
Showing
3 changed files
with
422 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ set(MODULES | |
parcall | ||
qualify | ||
multicast | ||
redirect | ||
) | ||
|
||
if(FVAD_FOUND) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
|
Oops, something went wrong.