]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
skypiax: let's have short tcp bufsize in windows too
authorGiovanni Maruzzelli <gmaruzz@gmail.com>
Wed, 17 Feb 2010 03:09:21 +0000 (03:09 +0000)
committerGiovanni Maruzzelli <gmaruzz@gmail.com>
Wed, 17 Feb 2010 03:09:21 +0000 (03:09 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16672 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_skypiax/skypiax_protocol.c

index 34c2be442816e2d4f13d2823dafeb61f05baa1f6..0e370d0ab720eab5c7e81fa094a9916d224973a4 100644 (file)
@@ -94,7 +94,7 @@ int skypiax_socket_create_and_bind(private_t * tech_pvt, unsigned short *which_p
  * sockbufsize=SAMPLES_PER_FRAME * 8;
  */
 #ifdef WIN32
-       sockbufsize = SAMPLES_PER_FRAME * 8 * 3;
+       sockbufsize = SAMPLES_PER_FRAME * 8;
 #else
        sockbufsize = SAMPLES_PER_FRAME * 8;
 #endif //WIN32
@@ -111,7 +111,7 @@ int skypiax_socket_create_and_bind(private_t * tech_pvt, unsigned short *which_p
  * sockbufsize=SAMPLES_PER_FRAME * 8;
  */
 #ifdef WIN32
-       sockbufsize = SAMPLES_PER_FRAME * 8 * 3;
+       sockbufsize = SAMPLES_PER_FRAME * 8;
 #else
        sockbufsize = SAMPLES_PER_FRAME * 8;
 #endif //WIN32