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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user