12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #include <cstring>
- #include <mosquittopp.h>
- static int run = -1;
- class mosquittopp_test : public mosqpp::mosquittopp
- {
- public:
- mosquittopp_test(const char *id);
- void on_connect(int rc);
- };
- mosquittopp_test::mosquittopp_test(const char *id) : mosqpp::mosquittopp(id)
- {
- }
- void mosquittopp_test::on_connect(int rc)
- {
- if(rc){
- exit(1);
- }else{
- publish(NULL, "retain/qos0/test", strlen("retained message"), "retained message", 0, true);
- }
- }
- int main(int argc, char *argv[])
- {
- struct mosquittopp_test *mosq;
- int port = atoi(argv[1]);
- mosqpp::lib_init();
- mosq = new mosquittopp_test("retain-qos0-test");
- mosq->connect("localhost", port, 60);
- while(run == -1){
- mosq->loop();
- }
- delete mosq;
- delete mosq;
- mosqpp::lib_cleanup();
- return run;
- }
|