Lines Matching full:gateway
25 MQTT-SN clients require an MQTT-SN gateway to connect to. These gateways translate between
26 MQTT-SN and MQTT. The Eclipse Paho project offers an implementation of a MQTT-SN gateway, but
28 https://www.eclipse.org/paho/index.php?page=components/mqtt-sn-transparent-gateway/index.php
78 struct sockaddr_in gateway = {0};
83 mqtt_sn_transport_udp_init(&tp, (struct sockaddr*)&gateway, sizeof((gateway)));
87 After the configuration is set up, the network address for the gateway to
90 should do at least one of the following steps to define a Gateway for the library:
92 * Call the :c:func:`mqtt_sn_add_gw` function to manually define a Gateway address.
106 After the Gateway address has been defined or found, the MQTT-SN client can
107 connect to the gateway. Call the :c:func:`mqtt_sn_connect` function, which will send a
129 In the above code snippet, the gateway is connected to before publishing messages.