Re: [Quickfix-developers] Bug - ThreadedSocketAcceptor crashes in Windows 2003 Itanium
Brought to you by:
orenmnero
|
From: Oren M. <or...@qu...> - 2007-02-07 17:00:00
|
This change has been committed to svn.
> As I work a lot with 64 bit platforms, I would appreciate this
> modification in next QuickFIX version.
>
> Thanks,
> Djalma
>
>
> ///////////////////////////////////////////////////////////////////
> int socket_getsockopt( int s, int opt, int& optval )
> { QF_STACK_PUSH(socket_getsockopt)
>
> int level = SOL_SOCKET;
> if( opt == TCP_NODELAY )
> level = IPPROTO_TCP;
>
> #ifdef _MSC_VER
> int length = sizeof(int); // @@This is an IN/OUT parameter and
> should be initialized this way
> #else
> socklen_t length;
> #endif
>
> return ::getsockopt( s, level, opt,
> ( char* ) & optval, & length );
>
> QF_STACK_POP
> }
> ///////////////////////////////////////////////////////////////////
> ----------------------------------------------------------------------
> ---
> Using Tomcat but need to do more? Need to support web services,
> security?
> Get stuff done quickly with pre-integrated technology to make your
> job easier.
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?
> cmd=lnk&kid=120709&bid=263057&dat=121642______________________________
> _________________
> Quickfix-developers mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfix-developers
|