mirror of
https://github.com/eclipse/paho.mqtt-sn.embedded-c.git
synced 2025-12-13 07:26:52 +01:00
Update 9c214a and 438a9a1
Signed-off-by: tomoaki <tomoaki@tomy-tech.com>
This commit is contained in:
@@ -162,8 +162,7 @@ int Process::getParam(const char* parameter, char* value)
|
||||
|
||||
if ((fp = fopen(configPath.c_str(), "r")) == NULL)
|
||||
{
|
||||
WRITELOG("No config file:[%s]\n", configPath.c_str());
|
||||
return -1;
|
||||
throw Exception("No config file:[" + configPath + "]\n");
|
||||
}
|
||||
|
||||
while (true)
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
#ifndef MQTTSNGWVERSION_H_IN_
|
||||
#define MQTTSNGWVERSION_H_IN_
|
||||
|
||||
#define PAHO_GATEWAY_VERSION "1.3.2"
|
||||
#define PAHO_GATEWAY_VERSION "1.4.0"
|
||||
|
||||
#endif /* MQTTSNGWVERSION_H_IN_ */
|
||||
|
||||
@@ -36,5 +36,14 @@ int main(int argc, char** argv)
|
||||
{
|
||||
gateway.initialize(argc, argv);
|
||||
gateway.run();
|
||||
try
|
||||
{
|
||||
gateway.initialize(argc, argv);
|
||||
gateway.run();
|
||||
}
|
||||
catch (const std::exception &ex) {
|
||||
WRITELOG("\nEclipse Paho MQTT-SN Gateway exception: %s\n", ex.what());
|
||||
WRITELOG("MQTT-SNGateway [-f Config file name]\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user