(file) Return to HTTPConnector.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/HTTPConnector.h between version 1.15 and 1.16

version 1.15, 2002/09/11 21:58:02 version 1.16, 2002/09/18 17:09:24
Line 23 
Line 23 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company
   //                (carolann_graves@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 75 
Line 76 
       /** Establishes a new connection and creates an HTTPConnection object       /** Establishes a new connection and creates an HTTPConnection object
           to represent it.           to represent it.
  
           @param locator indicates which server to connect to (of the form            @param host indicates host to connect to
           host:port).            @param portNumber indicates port number to use
           @param outputMessageQueue output message queue for the HTTPConnection           @param outputMessageQueue output message queue for the HTTPConnection
           that will be created.           that will be created.
           @exception InvalidLocatorException           @exception InvalidLocatorException
Line 84 
Line 85 
           @exception CannotConnectException           @exception CannotConnectException
       */       */
       inline HTTPConnection* connect(       inline HTTPConnection* connect(
          const String& locator,           const String& host,
            const Uint32 portNumber,
          MessageQueue* outputMessageQueue)          MessageQueue* outputMessageQueue)
       {       {
           return connect(locator, NULL, outputMessageQueue);            return connect(host, portNumber, NULL, outputMessageQueue);
       }       }
  
       /** Establishes a new connection and creates an HTTPConnection object       /** Establishes a new connection and creates an HTTPConnection object
           to represent it.           to represent it.
  
           @param locator indicates which server to connect to (of the form            @param host indicates host to connect to
           host:port).            @param portNumber indicates port number to use
           @param sslContext Specifies the SSL context to use for this connection           @param sslContext Specifies the SSL context to use for this connection
           @param outputMessageQueue output message queue for the HTTPConnection           @param outputMessageQueue output message queue for the HTTPConnection
           that will be created.           that will be created.
Line 103 
Line 105 
           @exception CannotConnectException           @exception CannotConnectException
       */       */
       HTTPConnection* connect(       HTTPConnection* connect(
          const String& locator,           const String& host,
            const Uint32 portNumber,
          SSLContext * sslContext,          SSLContext * sslContext,
          MessageQueue* outputMessageQueue);          MessageQueue* outputMessageQueue);
  


Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2