From: Giovanni Maruzzelli Date: Wed, 17 Feb 2010 03:09:21 +0000 (+0000) Subject: skypiax: let's have short tcp bufsize in windows too X-Git-Tag: v1.0.6~456 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0c8ba74795c8a5bea336184034cf5337c7b6c54;p=thirdparty%2Ffreeswitch.git skypiax: let's have short tcp bufsize in windows too git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16672 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_skypiax/skypiax_protocol.c b/src/mod/endpoints/mod_skypiax/skypiax_protocol.c index 34c2be4428..0e370d0ab7 100644 --- a/src/mod/endpoints/mod_skypiax/skypiax_protocol.c +++ b/src/mod/endpoints/mod_skypiax/skypiax_protocol.c @@ -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