You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/03/14 17:27:58 UTC

svn commit: r518207 - in /incubator/qpid/branches/qpid.0-9: ./ cpp/lib/client/ClientExchange.h cpp/lib/client/Connection.h cpp/tests/Makefile.am

Author: aconway
Date: Wed Mar 14 09:27:56 2007
New Revision: 518207

URL: http://svn.apache.org/viewvc?view=rev&rev=518207
Log:
Merged revisions 506406 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid

........
  r506406 | gsim | 2007-02-12 05:32:56 -0500 (Mon, 12 Feb 2007) | 4 lines
  
  * lib/client/Connection.h - changed default virtual host from '/' to '' as per QPID-349
  * lib/client/ClientExchange.h - fixed typo in a comment
........

Modified:
    incubator/qpid/branches/qpid.0-9/   (props changed)
    incubator/qpid/branches/qpid.0-9/cpp/lib/client/ClientExchange.h
    incubator/qpid/branches/qpid.0-9/cpp/lib/client/Connection.h
    incubator/qpid/branches/qpid.0-9/cpp/tests/Makefile.am

Propchange: incubator/qpid/branches/qpid.0-9/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Wed Mar 14 09:27:56 2007
@@ -1 +1 @@
-/incubator/qpid/trunk/qpid:1-492620,492636,492641,493126-493151,494540,494553,494587,495629,495661,496317,496665,496678,497341,497439,498591,499049,499374,499803,499845,499847,499864
+/incubator/qpid/trunk/qpid:1-492620,492636,492641,493126-493151,494540,494553,494587,495629,495661,496317,496665,496678,497341,497439,498591,499049,499374,499803,499845,499847,499864,506406

Modified: incubator/qpid/branches/qpid.0-9/cpp/lib/client/ClientExchange.h
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/cpp/lib/client/ClientExchange.h?view=diff&rev=518207&r1=518206&r2=518207
==============================================================================
--- incubator/qpid/branches/qpid.0-9/cpp/lib/client/ClientExchange.h (original)
+++ incubator/qpid/branches/qpid.0-9/cpp/lib/client/ClientExchange.h Wed Mar 14 09:27:56 2007
@@ -39,7 +39,7 @@
      * of the binding and the type of exchange.
      *
      * There are some standard exchange instances that are predeclared
-     * on all AMQP brokers. These are defined as statisc members
+     * on all AMQP brokers. These are defined as static members
      * STANDARD_DIRECT_EXCHANGE, STANDARD_TOPIC_EXCHANGE and
      * STANDARD_HEADERS_EXCHANGE. There is also the 'default' exchange
      * (member DEFAULT_EXCHANGE) which is nameless and of type

Modified: incubator/qpid/branches/qpid.0-9/cpp/lib/client/Connection.h
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/cpp/lib/client/Connection.h?view=diff&rev=518207&r1=518206&r2=518207
==============================================================================
--- incubator/qpid/branches/qpid.0-9/cpp/lib/client/Connection.h (original)
+++ incubator/qpid/branches/qpid.0-9/cpp/lib/client/Connection.h Wed Mar 14 09:27:56 2007
@@ -145,7 +145,7 @@
     void open(const std::string& host, int port = 5672, 
               const std::string& uid = "guest",
               const std::string& pwd = "guest", 
-              const std::string& virtualhost = "");
+              const std::string& virtualhost = "/");
 
     /**
      * Close the connection with optional error information for the peer.

Modified: incubator/qpid/branches/qpid.0-9/cpp/tests/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/cpp/tests/Makefile.am?view=diff&rev=518207&r1=518206&r2=518207
==============================================================================
--- incubator/qpid/branches/qpid.0-9/cpp/tests/Makefile.am (original)
+++ incubator/qpid/branches/qpid.0-9/cpp/tests/Makefile.am Wed Mar 14 09:27:56 2007
@@ -10,12 +10,6 @@
   $(APR_CXXFLAGS)
 
 # Unit tests
-client_tests =		\
-  client_test		\
-  echo_service		\
-  topic_listener	\
-  topic_publisher
-
 broker_tests =		\
   AccumulatedAckTest	\
   BrokerChannelTest 	\