Changeset 3014
- Timestamp:
- 12/13/99 12:49:27 (14 years ago)
- Location:
- rat/trunk
- Files:
-
- 2 modified
-
main_engine.c (modified) (2 diffs)
-
main_ui.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rat/trunk/main_engine.c
r3012 r3014 319 319 pdb_destroy(&sp->pdb); 320 320 321 for (j = 0; j < sp->rtp_session_count; j++) {322 rtp_send_bye(sp->rtp_session[j]);323 rtp_done(sp->rtp_session[j]);324 rtp_callback_exit(sp->rtp_session[j]);325 }326 327 321 /* Inform other processes that we're about to quit... */ 328 322 mbus_qmsgf(sp->mbus_engine, "()", FALSE, "mbus.bye", ""); … … 338 332 mbus_exit(sp->mbus_engine); 339 333 334 for (j = 0; j < sp->rtp_session_count; j++) { 335 rtp_send_bye(sp->rtp_session[j]); 336 rtp_done(sp->rtp_session[j]); 337 rtp_callback_exit(sp->rtp_session[j]); 338 } 339 340 340 session_exit(sp); 341 341 converters_free(); -
rat/trunk/main_ui.c
r3013 r3014 156 156 mbus_recv(m, NULL, &timeout); 157 157 } while (!mbus_sent_all(m)); 158 mbus_exit(m); 158 159 159 160 #ifdef WIN32
