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_remoteunreachable.dsm

14 lines
288 B

import(mod_dlg);
initial state START
enter { playFile(wav/default_en.wav) };
transition "remote unreachable" START - remoteDisappeared / {
log(1, "oh, that's sad, the far end disappeared...");
-- handle it ourselves
set(#processed="true");
stop(true);
} -> END;
state END;