]> git.stg.codes - stg.git/blobdiff - projects/sgauth/main.cpp
Merge branch 'master' into naffanya-dev
[stg.git] / projects / sgauth / main.cpp
index b161a5f300ea275a98bf4bec2d884f06030a0477..d0ab3c35b135b455f0fabf4b6598c0c8ed3bfa7d 100644 (file)
@@ -35,8 +35,8 @@
 #include <iostream>
 #include <vector>
 
-#include "ia_auth_c.h"
-#include "common.h"
+#include "stg/ia.h"
+#include "stg/common.h"
 #include "web.h"
 #include "settings_impl.h"
 
@@ -200,7 +200,7 @@ if (settings.GetDaemon())
         }
     }
 
-clnp = new IA_CLIENT_PROT(settings.GetServerName(), settings.GetServerPort(), settings.GetLocalPort());
+clnp = new IA_CLIENT_PROT(settings.GetServerName(), settings.GetServerPort(), settings.GetLocalName(), settings.GetLocalPort());
 
 if (!settings.GetNoWeb())
     {
@@ -239,7 +239,8 @@ clnp->Connect();
 
 while (1)
     {
-    usleep(200000);
+    struct timespec ts = {0, 200000000};
+    nanosleep(&ts, NULL);
 
     char state[20];