Diff for /mqtt/src/Attic/mqtt.c between versions 1.1.1.1.2.12 and 1.1.1.1.2.15

version 1.1.1.1.2.12, 2011/11/24 13:57:12 version 1.1.1.1.2.15, 2011/11/24 16:00:31
Line 58  main(int argc, char **argv) Line 58  main(int argc, char **argv)
                 call.LOG(logg, "Login: %s\n", ret ? "ALLOW" : "DENIED");                  call.LOG(logg, "Login: %s\n", ret ? "ALLOW" : "DENIED");
   
         if ((ret = call.InitSessPUB(&cfg, pub, "misho", "127.0.0.1", 12345)) == -1) {          if ((ret = call.InitSessPUB(&cfg, pub, "misho", "127.0.0.1", 12345)) == -1) {
                printf("Error:: Session problem\n");                printf("Error:: Session init problem\n");
                 goto end;                  goto end;
         } else          } else
                 call.LOG(logg, "InitSess: %d\n", ret);                  call.LOG(logg, "InitSess: %d\n", ret);
   
           if ((ret = call.ChkSessPUB(&cfg, pub, "misho", "127.0._.%")) == -1) {
                   printf("Error:: Session check problem\n");
                   goto end;
           } else
                   call.LOG(logg, "ChkSess: %d\n", ret);
   
           if ((ret = call.FiniSessPUB(&cfg, pub, "misho", "127.0._.1%")) == -1) {
                   printf("Error:: Session fini problem\n");
                   goto end;
           } else
                   call.LOG(logg, "FiniSess: %d\n", ret);
   
 end:  end:
         call.CloseLOG(logg);          call.CloseLOG(logg);

Removed from v.1.1.1.1.2.12  
changed lines
  Added in v.1.1.1.1.2.15


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>