Index: res/res_agi.c =================================================================== --- res/res_agi.c (revision 145551) +++ res/res_agi.c (working copy) @@ -64,6 +64,7 @@ #include "asterisk/lock.h" #include "asterisk/strings.h" #include "asterisk/agi.h" +#include "asterisk/features.h" #define MAX_ARGS 128 #define MAX_COMMANDS 128 @@ -1110,6 +1111,9 @@ app = pbx_findapp(argv[1]); if (app) { + if(!strcasecmp(argv[1], "Park")) { + ast_masq_park_call(chan, NULL, 0, NULL); + } res = pbx_exec(chan, app, argv[2]); } else { ast_log(LOG_WARNING, "Could not find application (%s)\n", argv[1]);