ARTICLE AD BOX
Building the AMQP QPID broker c++ source code on 2022 MSVC.
I've downloaded qpid-cpp-1.39.0, qpid-proton-0.40.0.
In the broker.cpp file are the following includes:
#include "qmf/org/apache/qpid/broker/ArgsBrokerConnect.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerCreate.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerDelete.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerQuery.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerEcho.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerGetLogLevel.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerQueueMoveMessages.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerSetLogLevel.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerGetLogHiresTimestamp.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerSetLogHiresTimestamp.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerSetTimestampConfig.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerGetTimestampConfig.h" #include "qmf/org/apache/qpid/broker/ArgsBrokerQueueRedirect.h"However, none of these files are part of the source I downloaded.
Where can these files be downloaded?
