mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +00:00
Adds F option to Bridge application
Similar to dial and queue F option. (Closes issue ASTERISK-19282) Reported by: To Patches: bridge_f-v3.diff uploaded by To (license 6347) Review: https://reviewboard.asterisk.org/r/1825/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@360227 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1464,6 +1464,15 @@ long int ast_random(void)
|
||||
return res;
|
||||
}
|
||||
|
||||
void ast_replace_subargument_delimiter(char *s)
|
||||
{
|
||||
for (; *s; s++) {
|
||||
if (*s == '^') {
|
||||
*s = ',';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
char *ast_process_quotes_and_slashes(char *start, char find, char replace_with)
|
||||
{
|
||||
char *dataPut = start;
|
||||
|
Reference in New Issue
Block a user