1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

removed server timeout (breaking change)

This commit is contained in:
Falk Werner
2020-04-06 20:44:18 +02:00
parent 74c1c44655
commit 357ca12e65
6 changed files with 8 additions and 18 deletions

View File

@@ -30,7 +30,7 @@ public:
wfp_client_connect(client, url);
while (!wfp_impl_client_is_connected(client))
{
wfp_client_service(client, 100);
wfp_client_service(client);
}
thread = std::thread(Run, this);
@@ -65,7 +65,7 @@ private:
{
while (!context->IsShutdownRequested())
{
wfp_client_service(context->client, 100);
wfp_client_service(context->client);
}
}

View File

@@ -70,7 +70,7 @@ public:
while (!wf_impl_server_is_operational(server))
{
wf_server_service(server, 100);
wf_server_service(server);
}
thread = std::thread(Run, this);
@@ -104,7 +104,7 @@ private:
{
while (!context->IsShutdownRequested())
{
wf_server_service(context->server, 100);
wf_server_service(context->server);
}
}