code
This commit is contained in:
@ -0,0 +1,68 @@
|
||||
// Copyright 2023 Dexter.Wan. All Rights Reserved.
|
||||
// EMail: 45141961@qq.com
|
||||
|
||||
#include "disconnect_options.h"
|
||||
#include <utility>
|
||||
#include <cstring>
|
||||
|
||||
namespace mqtt {
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
const MQTTAsync_disconnectOptions disconnect_options::DFLT_C_STRUCT = MQTTAsync_disconnectOptions_initializer;
|
||||
|
||||
disconnect_options::disconnect_options() : opts_(DFLT_C_STRUCT)
|
||||
{
|
||||
}
|
||||
|
||||
disconnect_options::disconnect_options(const disconnect_options& opt)
|
||||
: opts_(opt.opts_), tok_(opt.tok_)
|
||||
{
|
||||
}
|
||||
|
||||
disconnect_options::disconnect_options(disconnect_options&& opt)
|
||||
: opts_(opt.opts_), tok_(std::move(opt.tok_))
|
||||
{
|
||||
}
|
||||
|
||||
disconnect_options& disconnect_options::operator=(const disconnect_options& opt)
|
||||
{
|
||||
opts_ = opt.opts_;
|
||||
tok_ = opt.tok_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
disconnect_options& disconnect_options::operator=(disconnect_options&& opt)
|
||||
{
|
||||
opts_ = opt.opts_;
|
||||
tok_ = std::move(opt.tok_);
|
||||
return *this;
|
||||
}
|
||||
|
||||
void disconnect_options::set_token(const token_ptr& tok, int mqttVersion)
|
||||
{
|
||||
tok_ = tok;
|
||||
opts_.context = tok_.get();
|
||||
|
||||
opts_.onSuccess = nullptr;
|
||||
opts_.onFailure = nullptr;
|
||||
|
||||
opts_.onSuccess5 = nullptr;
|
||||
opts_.onFailure5 = nullptr;
|
||||
|
||||
if (tok) {
|
||||
if (mqttVersion >= MQTTVERSION_5) {
|
||||
opts_.onSuccess5 = &token::on_success5;
|
||||
opts_.onFailure5 = &token::on_failure5;
|
||||
}
|
||||
else {
|
||||
opts_.onSuccess = &token::on_success;
|
||||
opts_.onFailure = &token::on_failure;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// end namespace 'mqtt'
|
||||
}
|
||||
|
Reference in New Issue
Block a user