You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/doc/dsm/examples/test_byehdr.dsm

13 lines
262 B

initial state START;
transition "sess start" START - sessionStart / {
playFile(wav/default_en.wav);
} -> session_started;
state session_started;
transition "got bye" (START,session_started) - hangup / {
log(1, #headers);
stop;
} -> end;
state end;