You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by wh...@apache.org on 2005/08/17 11:53:56 UTC

cvs commit: ws-axis/c/src/transport/axis3/HTTPChannel HTTPChannel.cpp

whitlock    2005/08/17 02:53:56

  Modified:    c/src/transport/axis3/HTTPChannel HTTPChannel.cpp
  Log:
  Remove MSG_DONTROUTE and so allow clients to send to remote servers on different subnets
  
  Revision  Changes    Path
  1.19      +2 -2      ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannel.cpp
  
  Index: HTTPChannel.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannel.cpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- HTTPChannel.cpp	11 Jul 2005 10:59:26 -0000	1.18
  +++ HTTPChannel.cpp	17 Aug 2005 09:53:56 -0000	1.19
  @@ -285,9 +285,9 @@
       int nByteSent;
   
   #ifdef __OS400__
  -    if( (nByteSent = send( m_Sock, (char *)msg, size, MSG_DONTROUTE)) == SOCKET_ERROR)
  +    if( (nByteSent = send( m_Sock, (char *)msg, size, 0)) == SOCKET_ERROR)
   #else
  -    if( (nByteSent = send( m_Sock, msg, size, MSG_DONTROUTE)) == SOCKET_ERROR)
  +    if( (nByteSent = send( m_Sock, msg, size, 0)) == SOCKET_ERROR)
   #endif
       {
           // Output streaming error while writing data.  Close the channel and