summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
Commit message (Collapse)AuthorAgeFilesLines
* QPID-6754: some AMQP 1.0 based acl tests including for 'anonymous relay' ↵Gordon Sim2015-11-264-76/+482
| | | | | | pseudo-exchange git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1716780 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6870: qpidd does not at present have facility to track deliverability ↵Gordon Sim2015-11-191-2/+9
| | | | | | to individual links, so treat undeliverable-here as rejection git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1715199 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6754: distinguish between null target and null address (depends on ↵Gordon Sim2015-11-093-10/+20
| | | | | | PROTON-1043); add some docs; fix client to set address to null, not the whole target. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1713529 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6834: allow delete-on-close in queue policiesGordon Sim2015-11-063-3/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1713025 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6754: add support for null targetGordon Sim2015-11-067-3/+77
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1713024 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6790: ensure that asynchronous completion of incoming transfers does ↵Gordon Sim2015-10-263-6/+48
| | | | | | not result in trying to settle deliveries implicitly settled by the freeing of their link git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1710683 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6783: dynamically determine SASL service name based on protocolKen Giusti2015-10-125-6/+15
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1708221 13f79535-47bb-0310-9956-ffa450edef68
* NO_JIRA: Updates to ISSUES fileKim van der Riet2015-09-101-27/+63
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1702273 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Improve iostreams error reporting by passing errno to the function ↵Kim van der Riet2015-09-102-7/+10
| | | | | | that checks the outcome of iostream operations. It is hard to find the value of errno in a core trace, but trivial to print it out at the time the error is detected. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1702258 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6730: Make the linearstore journal timeout configurableAndrew Stitcher2015-09-092-10/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1702130 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: Change Selector beaviour and tests to accord with consensus semanticsAndrew Stitcher2015-09-044-12/+69
| | | | | | | - It seems to be the consensus amongst JMS Selector implementations that the NOT IN expression should return false if none of the types match git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1701301 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6718: Small fixes to compile on slightly older versions of G++ and ↵Andrew Stitcher2015-09-031-2/+3
| | | | | | Visual Studio git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1701130 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5855 - Simplified HA transaction logic.Alan Conway2015-09-0324-1367/+35
| | | | | | | | | | | | | | | | | | | | | | | Removed complex and incorrect HA+TX logic, reverted to the following limitation: You can use transactions in a HA cluster, but there are limitations on the transactional guarantees. Transactions function normally with the *primary* broker but replication to the backups is not coverted by the atomic guarantee. The following situations are all safe: - Client rolls back a transaction. - Client successfully commits a transaction. - Primary fails during a transaction *before* the client sends a commit. - Transaction contains only one message. The problem case is when all of the following occur: - transaction contains multiple actions (enqueues or dequeues) - primary fails between client sending commit and receiving commit-complete. In this case it is possible that only part of the transaction was replicated to the backups, so on fail-over partial transaction results may be visible. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1701109 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6718: Complete parsing for all styles of numeric literalsAndrew Stitcher2015-09-023-13/+149
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700915 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: Fix issue with BETWEEN comparisons when types don't matchAndrew Stitcher2015-09-021-5/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700869 13f79535-47bb-0310-9956-ffa450edef68
* Revert "QPID-6717: fix evaluation of BETWEEN and NOT IN when types are ↵Andrew Stitcher2015-09-021-2/+1
| | | | | | | | | | mismatched" This reverts commit 85ed093ba4beae54c1622000cb7a38cb30889239. - This change broke handling of the IN construct. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700868 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: Unit tests to demonstrate the issue (or not!)Andrew Stitcher2015-09-021-0/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700867 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Remove unused functionAndrew Stitcher2015-09-021-4/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700866 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6639: ensure all available data is decodedGordon Sim2015-09-011-9/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700681 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: fix evaluation of BETWEEN and NOT IN when types are mismatchedGordon Sim2015-08-281-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1698428 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6391: add support for no-local filterGordon Sim2015-08-283-1/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1698427 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6714: support for JMS header names in selectors, plus support for to, ↵Gordon Sim2015-08-288-11/+139
| | | | | | replyto and subject git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1698426 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Trivial update to work with changed Boost 1.59 Test library.Andrew Stitcher2015-08-201-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1696716 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6435: Restore decent error messages to the SSL codeAndrew Stitcher2015-08-208-62/+73
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1696715 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6698: use the monotonic clock for AMQP 1.0 idle timeoutKen Giusti2015-08-182-4/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1696415 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6577: HA - backup broker messages are larger than primary messages.Alan Conway2015-08-044-2/+16
| | | | | | | | | | | Under the 0-10 protocol (used by HA) brokers add an "exchange" property to each message for the exchange the message arrived on .This is different (and sometimes longer) on the backup brokers from the primary since on the backups the message arrives on a special replication exchange. This fixes backup brokers to not modify the exchange property on messages. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1694094 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6661: address some anomalies with heartbeats on the AMQP 1.0 pathGordon Sim2015-07-282-1/+3
| | | | | | | * the ticker driving heartbeats are restarted whenever data is sent out * the client checks whether there is data pending in determining whether it can encode git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1693067 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6660: don't try to process incoming delivery events for link that has ↵Gordon Sim2015-07-271-0/+2
| | | | | | been closed git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1692938 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6659: wait for full message before processingGordon Sim2015-07-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1692937 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6654, QPID-6592: ensure system info ptr is valid before using it, and ↵Gordon Sim2015-07-273-11/+14
| | | | | | ensure it is valid even if management is disabled git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1692936 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6639: delegate input as soon as authentication has succeeded (even if ↵Gordon Sim2015-07-141-1/+1
| | | | | | that has not yet been communicated to peer) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690874 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6256: prevent unused local variable warningGordon Sim2015-07-141-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690873 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6641: Update Windows SDK build for VS2013, Boost 1.58Charles E. Rolke2015-07-131-1/+2
| | | | | | | | Relax requirement for boost/include dir. Boost.org upstream builds don't have them. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690816 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6256: fix for conversion error on some versions of boostGordon Sim2015-06-231-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1687094 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6602: remove extraneous replenishment of credit (that is done by the ↵Gordon Sim2015-06-191-5/+0
| | | | | | call to get already) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1686476 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6256: Improved handling of protocol version incompatibilitiesGordon Sim2015-06-1715-66/+230
| | | | | | | | | | | | | | | | * 0-10 path no longer hans on open when connecting to a broker not supporting that version * the 'protocol' connection option now supports specifying multiple protocols to try in order (as a coma separated list) * the protocol defaults, i.e. the value assumed if the 'protocol' connection option is not specified, can now be set via the client config file (e.g. protocol-defaults=amqp1.0,amqp0-10) or an environment variable (e.g QPID_PROTOCOL_DEFAULTS=amqp1.0,amqp0-10) * if neither the connection option nor the defaults are specified all valid versions will be tried (currently amqp0-10, then amqp1.0 but this may change in a future version) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1686078 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6592: include identifying information in the connection handshakeKen Giusti2015-06-173-0/+34
| | | | | | | | | | For AMQP 1.0 connections, this patch adds identification information to the connection properties in the open performative. For AMQP 0-10 connections, this information is provided in the server-properties argument of the connection.start control. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1685995 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6392: detach not support until after proton 0.7Gordon Sim2015-06-151-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1685594 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6568: bump the minimum supported proton to 0.7Ken Giusti2015-06-154-20/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1685587 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6297: Python client should reconnect after network glitchErnest Allen2015-06-101-3/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1684716 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6392: handle detach eventGordon Sim2015-06-104-7/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1684680 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6563: free sessions and links that have completely closedKen Giusti2015-06-031-2/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1683379 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: remove unused strings.Charles E. Rolke2015-05-291-2/+0
| | | | | | | | ConnectionHandler no longer (since 2008-05-21) deals directly with auth. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1682469 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6559: add PLAIN support for NullSaslClientGordon Sim2015-05-293-8/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1682440 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: relax check when auth=noGordon Sim2015-05-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1682007 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6551: [C++ broker]: linearstore raising JERR_LFCR_SEQNUMNOTFOUND after ↵Pavel Moravec2015-05-216-29/+29
| | | | | | sending many DTX transactions git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1680861 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6548: SYSV init scripts do not work properly wiht SSL-only broker.Alan Conway2015-05-201-17/+43
| | | | | | | | | | | | Previously the broker was writing a PID file with the port number as a suffix. This was confusing the tools when using SSL and no explicit port, as the actual listening port is 5671 but qpidd -c was looking for 5672. This commit introduces a simple --pidfile option which writes the pid exactly where you tell it with no frills. The original port-pidfile setup is over complex and not really necessary, it can be deprecated at some future time. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1680550 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: fix tests for python 2.4Gordon Sim2015-05-201-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1680478 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Fix test bugs in ha_tests and interop_testAlan Conway2015-05-192-1/+3
| | | | | | | Race conditions in ha_tests. Typo in skip logic for interop_test when recent proton not available. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1680422 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: make qpid-send send as string not binaryGordon Sim2015-05-151-2/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1679556 13f79535-47bb-0310-9956-ffa450edef68