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 da...@apache.org on 2004/11/30 08:46:01 UTC

cvs commit: ws-axis/c/src/transport/axis2 ISecureChannel.hpp SecureChannel.h

damitha     2004/11/29 23:46:01

  Modified:    c/src/transport SSLChannel.hpp
               c/src/transport/axis2 ISecureChannel.hpp SecureChannel.h
  Log:
  ISecureChannel.hpp and SecureChannel.h is included recuresively. Solved that.
  SSLChannel.hpp removed the desctructory
  
  Revision  Changes    Path
  1.2       +0 -2      ws-axis/c/src/transport/SSLChannel.hpp
  
  Index: SSLChannel.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/SSLChannel.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SSLChannel.hpp	25 Nov 2004 12:41:58 -0000	1.1
  +++ SSLChannel.hpp	30 Nov 2004 07:46:00 -0000	1.2
  @@ -23,14 +23,12 @@
   
   #if !defined(_AXIS_SSLCHANNEL_HPP)
   #define _AXIS_SSLCHANNEL_HPP
  -//#include <axis/server/Packet.hpp>
   #include "SOAPTransport.h"
   #include <string>
   AXIS_CPP_NAMESPACE_USE
   class SSLChannel
   {
   public:
  -    virtual ~SSLChannel(){};
       virtual bool SSLInit() = 0;
       virtual bool openSSLConnection(unsigned int* pSock) = 0;
       virtual int SSLRead(std::string& msg) = 0;
  
  
  
  1.3       +5 -0      ws-axis/c/src/transport/axis2/ISecureChannel.hpp
  
  Index: ISecureChannel.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/ISecureChannel.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ISecureChannel.hpp	4 Nov 2004 12:20:58 -0000	1.2
  +++ ISecureChannel.hpp	30 Nov 2004 07:46:00 -0000	1.3
  @@ -1,3 +1,5 @@
  +#if !defined(_AXIS_ISECURECHANNEL_HPP)
  +#define _AXIS_ISECURECHANNEL_HPP
   #include <string>
   
   using namespace std;
  @@ -8,3 +10,6 @@
   	virtual void			setSecureProperties( const char *)=0;
   	virtual const char *	getSecureProperties()=0;
   };
  +
  +#endif
  +
  
  
  
  1.4       +5 -0      ws-axis/c/src/transport/axis2/SecureChannel.h
  
  Index: SecureChannel.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/SecureChannel.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SecureChannel.h	25 Nov 2004 12:41:58 -0000	1.3
  +++ SecureChannel.h	30 Nov 2004 07:46:00 -0000	1.4
  @@ -1,3 +1,5 @@
  +#if !defined(_AXIS_SECURECHANNEL_H)
  +#define _AXIS_SECURECHANNEL_H
   #include "ISecureChannel.hpp"
   #include "SSLChannelFactory.hpp"
   #include "../SSLChannel.hpp"
  @@ -38,3 +40,6 @@
           SSLChannelFactory* m_pFactory;
           SSLChannel* m_pSSLChannel;
   };
  +
  +#endif
  +