]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Winsock blows
authorAndrew Thompson <andrew@hijacked.us>
Tue, 18 Aug 2009 05:33:42 +0000 (05:33 +0000)
committerAndrew Thompson <andrew@hijacked.us>
Tue, 18 Aug 2009 05:33:42 +0000 (05:33 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14550 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/event_handlers/mod_erlang_event/ei_helpers.c

index ee001fecfe4619db75298537d8e22d6a4c3c1e8d..319cb55b818e5ab913006e6b5dcbbcee8311fb6b 100644 (file)
@@ -74,7 +74,11 @@ void ei_link(listener_t *listener, erlang_pid *from, erlang_pid *to) {
        /* sum:  542 */
 
        switch_mutex_lock(listener->sock_mutex);
+#ifdef WIN32
+       ret = send(listener->sockfd, msgbuf, index, 0);
+#else
        ret = write(listener->sockfd, msgbuf, index);
+#endif
        switch_mutex_unlock(listener->sock_mutex);
 }