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 pr...@apache.org on 2005/01/24 15:05:02 UTC

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

prestonf    2005/01/24 06:05:02

  Modified:    c/src/transport/axis3/HTTPSSLChannel HTTPSSLChannel.cpp
  Log:
  Hi All,
  These are modifications needed for the draft of the new http transport implementation AXIS3 (see AXISCPP-361).
  Regards,
  Fred Preston.
  
  Revision  Changes    Path
  1.7       +2 -3      ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.cpp
  
  Index: HTTPSSLChannel.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HTTPSSLChannel.cpp	20 Jan 2005 19:36:37 -0000	1.6
  +++ HTTPSSLChannel.cpp	24 Jan 2005 14:05:02 -0000	1.7
  @@ -120,7 +120,7 @@
   									  (char *) m_LastError.c_str());
       }
   
  -    int	nRxBytes = ReadFromSocket( msg);
  +    ReadFromSocket( msg);
   
   	return *this;
   }
  @@ -140,7 +140,7 @@
   									  (char *) m_LastError.c_str());
       }
   
  -	int nByteSent = WriteToSocket( msg, strlen( msg));
  +	WriteToSocket( msg, strlen( msg));
   
   	return *this;
   }
  @@ -516,7 +516,6 @@
   bool HTTPSSLChannel::OpenSSL_Open()
   {
       SSL_METHOD *	req_method = SSLv23_client_method();
  -    SSL_SESSION *	ssl_sessionid = NULL;
   	bool			bSuccess = (bool) AXIS_FAIL;
   	int				iSSLErrorIndex = 0;