[Freeswitch-svn] [commit] r10083 - freeswitch/trunk/src/mod/event_handlers/mod_event_socket
Freeswitch SVN
anthm at freeswitch.org
Mon Oct 20 12:33:47 EDT 2008
Author: anthm
Date: Mon Oct 20 12:33:46 2008
New Revision: 10083
Modified:
freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c
Log:
move code to the right place
Modified: freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c
==============================================================================
--- freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c (original)
+++ freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c Mon Oct 20 12:33:46 2008
@@ -619,18 +619,6 @@
}
}
- if (listener->sock && listener->hup) {
- char content_buf[512] = "";
- const char message[] = "Disconnected, goodbye!\nSee you at ClueCon http://www.cluecon.com!\n";
- int message_len = strlen(message);
-
- switch_snprintf(content_buf, sizeof(content_buf), "Content-Type: text/disconnect-notice\nContent-Length %d\n\n", message_len);
- len = strlen(content_buf);
- switch_socket_send(listener->sock, content_buf, &len);
- len = message_len;
- switch_socket_send(listener->sock, message, &len);
- }
-
return status;
}
@@ -1307,8 +1295,21 @@
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Session complete, waiting for children\n");
switch_thread_rwlock_wrlock(listener->rwlock);
+
+ if (listener->sock) {
+ char buf[512] = "";
+ const char message[] = "Disconnected, goodbye!\nSee you at ClueCon http://www.cluecon.com!\n";
+ int mlen = strlen(message);
+
+ switch_snprintf(buf, sizeof(buf), "Content-Type: text/disconnect-notice\nContent-Length %d\n\n", mlen);
+ len = strlen(buf);
+ switch_socket_send(listener->sock, buf, &len);
+ len = mlen;
+ switch_socket_send(listener->sock, message, &len);
+ close_socket(&listener->sock);
+ }
+
switch_thread_rwlock_unlock(listener->rwlock);
- close_socket(&listener->sock);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Connection Closed\n");
switch_core_hash_destroy(&listener->event_hash);
More information about the Freeswitch-svn
mailing list