Displaying 1 result from an estimated 1 matches for "opt_arg_announce".
2009 Dec 01
2
Patch for app_dial.c: exit when just one ext is busy.
...291 ----
#define DIAL_NOFORWARDHTML ((uint64_t)1 << 32) /* flags are now 64
bits, so keep it up! */
#define OPT_CANCEL_ELSEWHERE ((uint64_t)1 << 33)
#define OPT_PEER_H ((uint64_t)1 << 34)
+ #define OPT_SINGLE_BUSY ((uint64_t)1 << 35)
enum {
OPT_ARG_ANNOUNCE = 0,
***************
*** 302,307 ****
--- 305,311 ----
AST_APP_OPTIONS(dial_exec_options, BEGIN_OPTIONS
AST_APP_OPTION_ARG('A', OPT_ANNOUNCE, OPT_ARG_ANNOUNCE),
+ AST_APP_OPTION('B', OPT_SINGLE_BUSY),
AST_APP_OPTION('C', OPT_RESETCDR),
AST_AP...