]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix race condition when hangup happends after answer indication but before the sessio...
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 3 May 2010 17:29:56 +0000 (13:29 -0400)
committerJeff Lenk <jeff@jefflenk.com>
Wed, 5 May 2010 20:14:27 +0000 (15:14 -0500)
src/include/private/switch_core_pvt.h

index 882c3c331a2d22ac5dc5be73a8f9bd6577b0c80a..12fd3209c6424c49528ea88bb32c006d1c0abae1 100644 (file)
@@ -94,11 +94,7 @@ typedef enum {
        SSF_WARN_TRANSCODE = (1 << 1),
        SSF_HANGUP = (1 << 2),
        SSF_THREAD_STARTED = (1 << 3),
-       SSF_THREAD_RUNNING = (1 << 4),
-       SSF_READ_TRANSCODE = (1 << 5),
-       SSF_WRITE_TRANSCODE = (1 << 6),
-       SSF_READ_CODEC_RESET = (1 << 7),
-       SSF_WRITE_CODEC_RESET = (1 << 8)
+       SSF_THREAD_RUNNING = (1 << 4)
 } switch_session_flag_t;