89 lines
1.6 KiB
C++
89 lines
1.6 KiB
C++
/**
|
|
* Class describing connection setup security challenge response
|
|
*
|
|
* @copyright 2014 Copernica BV
|
|
*/
|
|
|
|
/**
|
|
* Set up namespace
|
|
*/
|
|
namespace AMQP {
|
|
|
|
/**
|
|
* Class implementation
|
|
*/
|
|
class ConnectionSecureOKFrame : public ConnectionFrame
|
|
{
|
|
private:
|
|
/**
|
|
* The security challenge response
|
|
* @var LongString
|
|
*/
|
|
LongString _response;
|
|
|
|
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 fields
|
|
_response.fill(buffer);
|
|
}
|
|
|
|
public:
|
|
/**
|
|
* Construct a connection security challenge response frame
|
|
*
|
|
* @param response the challenge response
|
|
*/
|
|
ConnectionSecureOKFrame(const std::string& response) :
|
|
ConnectionFrame(response.length() + 4), //response length + uint32_t for encoding the length
|
|
_response(response)
|
|
{}
|
|
|
|
/**
|
|
* Construct a connection security challenge response frame from a received frame
|
|
*
|
|
* @param frame received frame
|
|
*/
|
|
ConnectionSecureOKFrame(ReceivedFrame &frame) :
|
|
ConnectionFrame(frame),
|
|
_response(frame)
|
|
{}
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
virtual ~ConnectionSecureOKFrame() {}
|
|
|
|
/**
|
|
* Method id
|
|
* @return uint16_t
|
|
*/
|
|
virtual uint16_t methodID() const override
|
|
{
|
|
return 21;
|
|
}
|
|
|
|
/**
|
|
* Get the challenge response
|
|
* @return string
|
|
*/
|
|
const std::string& response() const
|
|
{
|
|
return _response;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* end namespace
|
|
*/
|
|
}
|
|
|