95 lines
1.9 KiB
C++
95 lines
1.9 KiB
C++
/**
|
|
* Class describing connection vhost open acknowledgement frame
|
|
*
|
|
* Message sent by the server to the client to confirm that a connection to
|
|
* a vhost could be established
|
|
*
|
|
* @copyright 2014 Copernica BV
|
|
*/
|
|
|
|
/**
|
|
* Set up namespace
|
|
*/
|
|
namespace AMQP {
|
|
|
|
/**
|
|
* Class implementation
|
|
*/
|
|
class ConnectionOpenOKFrame : public ConnectionFrame
|
|
{
|
|
private:
|
|
/**
|
|
* Deprecated field we need to read
|
|
* @var ShortString
|
|
*/
|
|
ShortString _deprecatedKnownHosts;
|
|
|
|
protected:
|
|
/**
|
|
* Encode a frame on a string buffer
|
|
*
|
|
* @param buffer buffer to write frame to
|
|
*/
|
|
virtual void fill(OutBuffer& buffer) const override
|
|
{
|
|
// call base
|
|
ConnectionFrame::fill(buffer);
|
|
|
|
// add deprecaed field
|
|
_deprecatedKnownHosts.fill(buffer);
|
|
}
|
|
public:
|
|
/**
|
|
* Construct a connectionopenokframe from a received frame
|
|
*
|
|
* @param frame received frame
|
|
*/
|
|
ConnectionOpenOKFrame(ReceivedFrame &frame) :
|
|
ConnectionFrame(frame),
|
|
_deprecatedKnownHosts(frame)
|
|
{}
|
|
|
|
/**
|
|
* Construct a connectionopenokframe
|
|
*
|
|
*/
|
|
ConnectionOpenOKFrame() :
|
|
ConnectionFrame(1), // for the deprecated shortstring
|
|
_deprecatedKnownHosts("")
|
|
{}
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
virtual ~ConnectionOpenOKFrame() {}
|
|
|
|
/**
|
|
* Method id
|
|
* @return uint16_t
|
|
*/
|
|
virtual uint16_t methodID() const override
|
|
{
|
|
return 41;
|
|
}
|
|
|
|
/**
|
|
* Process the frame
|
|
* @param connection The connection over which it was received
|
|
* @return bool Was it succesfully processed?
|
|
*/
|
|
virtual bool process(ConnectionImpl *connection) override
|
|
{
|
|
// all is ok, mark the connection as connected
|
|
connection->setConnected();
|
|
|
|
// done
|
|
return true;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* end namespace
|
|
*/
|
|
}
|
|
|