Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 | /* * Copyright (c) 2018 Nordic Semiconductor ASA * * SPDX-License-Identifier: Apache-2.0 */ /** @file mqtt.h * * @defgroup mqtt_socket MQTT Client library * @ingroup networking * @{ * @brief MQTT Client Implementation * * @details * MQTT Client's Application interface is defined in this header. * * @note The implementation assumes TCP module is enabled. * * @note By default the implementation uses MQTT version 3.1.1. */ #ifndef ZEPHYR_INCLUDE_NET_MQTT_H_ #define ZEPHYR_INCLUDE_NET_MQTT_H_ #include <stddef.h> #include <zephyr.h> #include <zephyr/types.h> #include <net/tls_credentials.h> #include <net/net_ip.h> #include <sys/mutex.h> #include <net/websocket.h> #ifdef __cplusplus extern "C" { #endif /** * @brief MQTT Asynchronous Events notified to the application from the module * through the callback registered by the application. */ enum mqtt_evt_type { /** Acknowledgment of connection request. Event result accompanying * the event indicates whether the connection failed or succeeded. */ MQTT_EVT_CONNACK, /** Disconnection Event. MQTT Client Reference is no longer valid once * this event is received for the client. */ MQTT_EVT_DISCONNECT, /** Publish event received when message is published on a topic client * is subscribed to. * * @note PUBLISH event structure only contains payload size, the payload * data parameter should be ignored. Payload content has to be * read manually with @ref mqtt_read_publish_payload function. */ MQTT_EVT_PUBLISH, /** Acknowledgment for published message with QoS 1. */ MQTT_EVT_PUBACK, /** Reception confirmation for published message with QoS 2. */ MQTT_EVT_PUBREC, /** Release of published message with QoS 2. */ MQTT_EVT_PUBREL, /** Confirmation to a publish release message with QoS 2. */ MQTT_EVT_PUBCOMP, /** Acknowledgment to a subscribe request. */ MQTT_EVT_SUBACK, /** Acknowledgment to a unsubscribe request. */ MQTT_EVT_UNSUBACK }; /** @brief MQTT version protocol level. */ enum mqtt_version { MQTT_VERSION_3_1_0 = 3, /**< Protocol level for 3.1.0. */ MQTT_VERSION_3_1_1 = 4 /**< Protocol level for 3.1.1. */ }; /** @brief MQTT Quality of Service types. */ enum mqtt_qos { /** Lowest Quality of Service, no acknowledgment needed for published * message. */ MQTT_QOS_0_AT_MOST_ONCE = 0x00, /** Medium Quality of Service, if acknowledgment expected for published * message, duplicate messages permitted. */ MQTT_QOS_1_AT_LEAST_ONCE = 0x01, /** Highest Quality of Service, acknowledgment expected and message * shall be published only once. Message not published to interested * parties unless client issues a PUBREL. */ MQTT_QOS_2_EXACTLY_ONCE = 0x02 }; /** @brief MQTT CONNACK return codes. */ enum mqtt_conn_return_code { /** Connection accepted. */ MQTT_CONNECTION_ACCEPTED = 0x00, /** The Server does not support the level of the MQTT protocol * requested by the Client. */ MQTT_UNACCEPTABLE_PROTOCOL_VERSION = 0x01, /** The Client identifier is correct UTF-8 but not allowed by the * Server. */ MQTT_IDENTIFIER_REJECTED = 0x02, /** The Network Connection has been made but the MQTT service is * unavailable. */ MQTT_SERVER_UNAVAILABLE = 0x03, /** The data in the user name or password is malformed. */ MQTT_BAD_USER_NAME_OR_PASSWORD = 0x04, /** The Client is not authorized to connect. */ MQTT_NOT_AUTHORIZED = 0x05 }; /** @brief MQTT SUBACK return codes. */ enum mqtt_suback_return_code { /** Subscription with QoS 0 succeeded. */ MQTT_SUBACK_SUCCESS_QoS_0 = 0x00, /** Subscription with QoS 1 succeeded. */ MQTT_SUBACK_SUCCESS_QoS_1 = 0x01, /** Subscription with QoS 2 succeeded. */ MQTT_SUBACK_SUCCESS_QoS_2 = 0x02, /** Subscription for a topic failed. */ MQTT_SUBACK_FAILURE = 0x80 }; /** @brief Abstracts UTF-8 encoded strings. */ struct mqtt_utf8 { u8_t *utf8; /**< Pointer to UTF-8 string. */ u32_t size; /**< Size of UTF string, in bytes. */ }; /** @brief Abstracts binary strings. */ struct mqtt_binstr { u8_t *data; /**< Pointer to binary stream. */ u32_t len; /**< Length of binary stream. */ }; /** @brief Abstracts MQTT UTF-8 encoded topic that can be subscribed * to or published. */ struct mqtt_topic { /** Topic on to be published or subscribed to. */ struct mqtt_utf8 topic; /** Quality of service requested for the subscription. * @ref mqtt_qos for details. */ u8_t qos; }; /** @brief Parameters for a publish message. */ struct mqtt_publish_message { struct mqtt_topic topic; /**< Topic on which data was published. */ struct mqtt_binstr payload; /**< Payload on the topic published. */ }; /** @brief Parameters for a connection acknowledgment (CONNACK). */ struct mqtt_connack_param { /** The Session Present flag enables a Client to establish whether * the Client and Server have a consistent view about whether there * is already stored Session state. */ u8_t session_present_flag; /** The appropriate non-zero Connect return code indicates if the Server * is unable to process a connection request for some reason. */ enum mqtt_conn_return_code return_code; }; /** @brief Parameters for MQTT publish acknowledgment (PUBACK). */ struct mqtt_puback_param { u16_t message_id; }; /** @brief Parameters for MQTT publish receive (PUBREC). */ struct mqtt_pubrec_param { u16_t message_id; }; /** @brief Parameters for MQTT publish release (PUBREL). */ struct mqtt_pubrel_param { u16_t message_id; }; /** @brief Parameters for MQTT publish complete (PUBCOMP). */ struct mqtt_pubcomp_param { u16_t message_id; }; /** @brief Parameters for MQTT subscription acknowledgment (SUBACK). */ struct mqtt_suback_param { u16_t message_id; struct mqtt_binstr return_codes; }; /** @brief Parameters for MQTT unsubscribe acknowledgment (UNSUBACK). */ struct mqtt_unsuback_param { u16_t message_id; }; /** @brief Parameters for a publish message. */ struct mqtt_publish_param { /** Messages including topic, QoS and its payload (if any) * to be published. */ struct mqtt_publish_message message; /** Message id used for the publish message. Redundant for QoS 0. */ u16_t message_id; /** Duplicate flag. If 1, it indicates the message is being * retransmitted. Has no meaning with QoS 0. */ u8_t dup_flag : 1; /** Retain flag. If 1, the message shall be stored persistently * by the broker. */ u8_t retain_flag : 1; }; /** @brief List of topics in a subscription request. */ struct mqtt_subscription_list { /** Array containing topics along with QoS for each. */ struct mqtt_topic *list; /** Number of topics in the subscription list */ u16_t list_count; /** Message id used to identify subscription request. */ u16_t message_id; }; /** * @brief Defines event parameters notified along with asynchronous events * to the application. */ union mqtt_evt_param { /** Parameters accompanying MQTT_EVT_CONNACK event. */ struct mqtt_connack_param connack; /** Parameters accompanying MQTT_EVT_PUBLISH event. * * @note PUBLISH event structure only contains payload size, the payload * data parameter should be ignored. Payload content has to be * read manually with @ref mqtt_read_publish_payload function. */ struct mqtt_publish_param publish; /** Parameters accompanying MQTT_EVT_PUBACK event. */ struct mqtt_puback_param puback; /** Parameters accompanying MQTT_EVT_PUBREC event. */ struct mqtt_pubrec_param pubrec; /** Parameters accompanying MQTT_EVT_PUBREL event. */ struct mqtt_pubrel_param pubrel; /** Parameters accompanying MQTT_EVT_PUBCOMP event. */ struct mqtt_pubcomp_param pubcomp; /** Parameters accompanying MQTT_EVT_SUBACK event. */ struct mqtt_suback_param suback; /** Parameters accompanying MQTT_EVT_UNSUBACK event. */ struct mqtt_unsuback_param unsuback; }; /** @brief Defines MQTT asynchronous event notified to the application. */ struct mqtt_evt { /** Identifies the event. */ enum mqtt_evt_type type; /** Contains parameters (if any) accompanying the event. */ union mqtt_evt_param param; /** Event result. 0 or a negative error code (errno.h) indicating * reason of failure. */ int result; }; struct mqtt_client; /** * @brief Asynchronous event notification callback registered by the * application. * * @param[in] client Identifies the client for which the event is notified. * @param[in] evt Event description along with result and associated * parameters (if any). */ typedef void (*mqtt_evt_cb_t)(struct mqtt_client *client, const struct mqtt_evt *evt); /** @brief TLS configuration for secure MQTT transports. */ struct mqtt_sec_config { /** Indicates the preference for peer verification. */ int peer_verify; /** Indicates the number of entries in the cipher list. */ u32_t cipher_count; /** Indicates the list of ciphers to be used for the session. * May be NULL to use the default ciphers. */ int *cipher_list; /** Indicates the number of entries in the sec tag list. */ u32_t sec_tag_count; /** Indicates the list of security tags to be used for the session. */ sec_tag_t *sec_tag_list; /** Peer hostname for ceritificate verification. * May be NULL to skip hostname verification. */ char *hostname; }; /** @brief MQTT transport type. */ enum mqtt_transport_type { /** Use non secure TCP transport for MQTT connection. */ MQTT_TRANSPORT_NON_SECURE, #if defined(CONFIG_MQTT_LIB_TLS) /** Use secure TCP transport (TLS) for MQTT connection. */ MQTT_TRANSPORT_SECURE, #endif /* CONFIG_MQTT_LIB_TLS */ #if defined(CONFIG_MQTT_LIB_WEBSOCKET) /** Use non secure Websocket transport for MQTT connection. */ MQTT_TRANSPORT_NON_SECURE_WEBSOCKET, #if defined(CONFIG_MQTT_LIB_TLS) /** Use secure Websocket transport (TLS) for MQTT connection. */ MQTT_TRANSPORT_SECURE_WEBSOCKET, #endif #endif /* CONFIG_MQTT_LIB_WEBSOCKET */ /** Shall not be used as a transport type. * Indicator of maximum transport types possible. */ MQTT_TRANSPORT_NUM }; /** @brief MQTT transport specific data. */ struct mqtt_transport { /** Transport type selection for client instance. * @ref mqtt_transport_type for possible values. MQTT_TRANSPORT_MAX * is not a valid type. */ enum mqtt_transport_type type; union { /* TCP socket transport for MQTT */ struct { /** Socket descriptor. */ int sock; } tcp; #if defined(CONFIG_MQTT_LIB_TLS) /* TLS socket transport for MQTT */ struct { /** Socket descriptor. */ int sock; /** TLS configuration. See @ref mqtt_sec_config for * details. */ struct mqtt_sec_config config; } tls; #endif /* CONFIG_MQTT_LIB_TLS */ }; #if defined(CONFIG_MQTT_LIB_WEBSOCKET) /** Websocket transport for MQTT */ struct { /** Websocket configuration. */ struct websocket_request config; /** Socket descriptor */ int sock; /** Websocket timeout */ s32_t timeout; } websocket; #endif #if defined(CONFIG_SOCKS) struct { struct sockaddr addr; socklen_t addrlen; } proxy; #endif }; /** @brief MQTT internal state. */ struct mqtt_internal { /** Internal. Mutex to protect access to the client instance. */ struct sys_mutex mutex; /** Internal. Wall clock value (in milliseconds) of the last activity * that occurred. Needed for periodic PING. */ u32_t last_activity; /** Internal. Client's state in the connection. */ u32_t state; /** Internal. Packet length read so far. */ u32_t rx_buf_datalen; /** Internal. Remaining payload length to read. */ u32_t remaining_payload; }; /** * @brief MQTT Client definition to maintain information relevant to the * client. */ struct mqtt_client { /** MQTT client internal state. */ struct mqtt_internal internal; /** MQTT transport configuration and data. */ struct mqtt_transport transport; /** Unique client identification to be used for the connection. */ struct mqtt_utf8 client_id; /** Broker details, for example, address, port. Address type should * be compatible with transport used. */ const void *broker; /** User name (if any) to be used for the connection. NULL indicates * no user name. */ struct mqtt_utf8 *user_name; /** Password (if any) to be used for the connection. Note that if * password is provided, user name shall also be provided. NULL * indicates no password. */ struct mqtt_utf8 *password; /** Will topic and QoS. Can be NULL. */ struct mqtt_topic *will_topic; /** Will message. Can be NULL. Non NULL value valid only if will topic * is not NULL. */ struct mqtt_utf8 *will_message; /** Application callback registered with the module to get MQTT events. */ mqtt_evt_cb_t evt_cb; /** Receive buffer used for MQTT packet reception in RX path. */ u8_t *rx_buf; /** Size of receive buffer. */ u32_t rx_buf_size; /** Transmit buffer used for creating MQTT packet in TX path. */ u8_t *tx_buf; /** Size of transmit buffer. */ u32_t tx_buf_size; /** Keepalive interval for this client in seconds. * Default is CONFIG_MQTT_KEEPALIVE. */ u16_t keepalive; /** MQTT protocol version. */ u8_t protocol_version; /** Will retain flag, 1 if will message shall be retained persistently. */ u8_t will_retain : 1; /** Clean session flag indicating a fresh (1) or a retained session (0). * Default is 1. */ u8_t clean_session : 1; }; /** * @brief Initializes the client instance. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * * @note Shall be called to initialize client structure, before setting any * client parameters and before connecting to broker. */ void mqtt_client_init(struct mqtt_client *client); #if defined(CONFIG_SOCKS) /* * @brief Set proxy server details * * @param[in] client Client instance for which the procedure is requested, * Shall not be NULL. * @param[in] proxy_addr Proxy server address. * @param[in] addrlen Proxy server address length. * * @return 0 or a negative error code (errno.h) indicating reason of failure. * * @note Must be called before calling mqtt_connect(). */ int mqtt_client_set_proxy(struct mqtt_client *client, struct sockaddr *proxy_addr, socklen_t addrlen); #endif /** * @brief API to request new MQTT client connection. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * * @note This memory is assumed to be resident until mqtt_disconnect is called. * @note Any subsequent changes to parameters like broker address, user name, * device id, etc. have no effect once MQTT connection is established. * * @return 0 or a negative error code (errno.h) indicating reason of failure. * * @note Default protocol revision used for connection request is 3.1.1. Please * set client.protocol_version = MQTT_VERSION_3_1_0 to use protocol 3.1.0. * @note * @rst * Please modify :option:`CONFIG_MQTT_KEEPALIVE` time to override * default of 1 minute. * @endrst */ int mqtt_connect(struct mqtt_client *client); /** * @brief API to publish messages on topics. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * @param[in] param Parameters to be used for the publish message. * Shall not be NULL. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_publish(struct mqtt_client *client, const struct mqtt_publish_param *param); /** * @brief API used by client to send acknowledgment on receiving QoS1 publish * message. Should be called on reception of @ref MQTT_EVT_PUBLISH with * QoS level @ref MQTT_QOS_1_AT_LEAST_ONCE. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * @param[in] param Identifies message being acknowledged. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_publish_qos1_ack(struct mqtt_client *client, const struct mqtt_puback_param *param); /** * @brief API used by client to send acknowledgment on receiving QoS2 publish * message. Should be called on reception of @ref MQTT_EVT_PUBLISH with * QoS level @ref MQTT_QOS_2_EXACTLY_ONCE. * * @param[in] client Identifies client instance for which the procedure is * requested. Shall not be NULL. * @param[in] param Identifies message being acknowledged. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_publish_qos2_receive(struct mqtt_client *client, const struct mqtt_pubrec_param *param); /** * @brief API used by client to request release of QoS2 publish message. * Should be called on reception of @ref MQTT_EVT_PUBREC. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * @param[in] param Identifies message being released. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_publish_qos2_release(struct mqtt_client *client, const struct mqtt_pubrel_param *param); /** * @brief API used by client to send acknowledgment on receiving QoS2 publish * release message. Should be called on reception of * @ref MQTT_EVT_PUBREL. * * @param[in] client Identifies client instance for which the procedure is * requested. Shall not be NULL. * @param[in] param Identifies message being completed. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_publish_qos2_complete(struct mqtt_client *client, const struct mqtt_pubcomp_param *param); /** * @brief API to request subscription of one or more topics on the connection. * * @param[in] client Identifies client instance for which the procedure * is requested. Shall not be NULL. * @param[in] param Subscription parameters. Shall not be NULL. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_subscribe(struct mqtt_client *client, const struct mqtt_subscription_list *param); /** * @brief API to request unsubscription of one or more topics on the connection. * * @param[in] client Identifies client instance for which the procedure is * requested. Shall not be NULL. * @param[in] param Parameters describing topics being unsubscribed from. * Shall not be NULL. * * @note QoS included in topic description is unused in this API. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_unsubscribe(struct mqtt_client *client, const struct mqtt_subscription_list *param); /** * @brief API to send MQTT ping. The use of this API is optional, as the library * handles the connection keep-alive on it's own, see @ref mqtt_live. * * @param[in] client Identifies client instance for which procedure is * requested. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_ping(struct mqtt_client *client); /** * @brief API to disconnect MQTT connection. * * @param[in] client Identifies client instance for which procedure is * requested. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_disconnect(struct mqtt_client *client); /** * @brief API to abort MQTT connection. This will close the corresponding * transport without closing the connection gracefully at the MQTT level * (with disconnect message). * * @param[in] client Identifies client instance for which procedure is * requested. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_abort(struct mqtt_client *client); /** * @brief This API should be called periodically for the client to be able * to keep the connection alive by sending Ping Requests if need be. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * * @note Application shall ensure that the periodicity of calling this function * makes it possible to respect the Keep Alive time agreed with the * broker on connection. @ref mqtt_connect for details on Keep Alive * time. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_live(struct mqtt_client *client); /** * @brief Receive an incoming MQTT packet. The registered callback will be * called with the packet content. * * @note In case of PUBLISH message, the payload has to be read separately with * @ref mqtt_read_publish_payload function. The size of the payload to * read is provided in the publish event structure. * * @note This is a non-blocking call. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * * @return 0 or a negative error code (errno.h) indicating reason of failure. */ int mqtt_input(struct mqtt_client *client); /** * @brief Read the payload of the received PUBLISH message. This function should * be called within the MQTT event handler, when MQTT PUBLISH message is * notified. * * @note This is a non-blocking call. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * @param[out] buffer Buffer where payload should be stored. * @param[in] length Length of the buffer, in bytes. * * @return Number of bytes read or a negative error code (errno.h) indicating * reason of failure. */ int mqtt_read_publish_payload(struct mqtt_client *client, void *buffer, size_t length); /** * @brief Blocking version of @ref mqtt_read_publish_payload function. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * @param[out] buffer Buffer where payload should be stored. * @param[in] length Length of the buffer, in bytes. * * @return Number of bytes read or a negative error code (errno.h) indicating * reason of failure. */ int mqtt_read_publish_payload_blocking(struct mqtt_client *client, void *buffer, size_t length); /** * @brief Blocking version of @ref mqtt_read_publish_payload function which * runs until the required number of bytes are read. * * @param[in] client Client instance for which the procedure is requested. * Shall not be NULL. * @param[out] buffer Buffer where payload should be stored. * @param[in] length Number of bytes to read. * * @return 0 if success, otherwise a negative error code (errno.h) indicating * reason of failure. */ int mqtt_readall_publish_payload(struct mqtt_client *client, u8_t *buffer, size_t length); #ifdef __cplusplus } #endif #endif /* ZEPHYR_INCLUDE_NET_MQTT_H_ */ /**@} */ |