/******************************************************************************** Copyright (c) 2020-2023 Frank Pagliughi <fpagliughi@mindspring.com>** All rights reserved. This program and the accompanying materials* are made available under the terms of the Eclipse Public License v2.0* and Eclipse Distribution License v1.0 which accompany this distribution.** The Eclipse Public License is available at* http://www.eclipse.org/legal/epl-v20.html* and the Eclipse Distribution License is available at* http://www.eclipse.org/org/documents/edl-v10.php.** Contributors:* Frank Pagliughi - initial implementation and documentation*******************************************************************************/#include "mqtt/create_options.h"#include <cstring>namespace mqtt {/////////////////////////////////////////////////////////////////////////////const MQTTAsync_createOptions create_options::DFLT_C_STRUCT =MQTTAsync_createOptions_initializer5;create_options::create_options() : opts_(DFLT_C_STRUCT){}create_options::create_options(int mqttVersion) : create_options(){opts_.MQTTVersion = mqttVersion;}create_options::create_options(int mqttVersion, int maxBufferedMessages) : create_options(){opts_.MQTTVersion = mqttVersion;if (maxBufferedMessages != 0) {opts_.sendWhileDisconnected = to_int(true);opts_.maxBufferedMessages = maxBufferedMessages;}}/////////////////////////////////////////////////////////////////////////////} // end namespace mqtt
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。