]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[esl] Add SHUTDOWN_REQUESTED event.
authorAndrey Volk <andywolk@gmail.com>
Mon, 16 Dec 2019 18:31:19 +0000 (22:31 +0400)
committerAndrey Volk <andywolk@gmail.com>
Mon, 30 Dec 2019 23:12:04 +0000 (03:12 +0400)
libs/esl/src/esl_event.c
libs/esl/src/include/esl_event.h

index 75a456c86150623f576558d556a36c350c4a90f7..fa51194853a7895a266b0357e7066e1f3134f3b2 100644 (file)
@@ -148,6 +148,7 @@ static const char *EVENT_NAMES[] = {
        "CALL_DETAIL",
        "DEVICE_STATE",
        "TEXT",
+       "SHUTDOWN_REQUESTED",
        "ALL"
 };
 
index 765d0e6150bd7acaa0a3d734fcf6048ea4857df9..de070ad7239dbaa158072b158d5420bc8af5cdd8 100644 (file)
@@ -138,6 +138,7 @@ typedef enum {
        ESL_EVENT_CALL_DETAIL,
        ESL_EVENT_DEVICE_STATE,
        ESL_EVENT_TEXT,
+       ESL_EVENT_SHUTDOWN_REQUESTED,
        ESL_EVENT_ALL
 } esl_event_types_t;