1234567891011121314151617181920212223242526272829303132 |
- #include <stdbool.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <mosquitto.h>
- static int run = -1;
- int main(int argc, char *argv[])
- {
- int rc;
- struct mosquitto *mosq;
- int port = atoi(argv[1]);
- mosquitto_lib_init();
- mosq = mosquitto_new("01-unpwd-set", true, NULL);
- if(mosq == NULL){
- return 1;
- }
- mosquitto_username_pw_set(mosq, "uname", ";'[08gn=#");
- rc = mosquitto_connect(mosq, "localhost", port, 60);
- while(run == -1){
- mosquitto_loop(mosq, -1, 1);
- }
- mosquitto_destroy(mosq);
- mosquitto_lib_cleanup();
- return run;
- }
|