Commit 52c6070e authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

httpapi: Stub HttpSetUrlGroupProperty(HttpServerLoggingProperty).

parent 4c5f3253
......@@ -657,25 +657,29 @@ ULONG WINAPI HttpCloseUrlGroup(HTTP_URL_GROUP_ID id)
ULONG WINAPI HttpSetUrlGroupProperty(HTTP_URL_GROUP_ID id, HTTP_SERVER_PROPERTY property, void *value, ULONG length)
{
struct url_group *group = get_url_group(id);
const HTTP_BINDING_INFO *info = value;
TRACE("id %s, property %u, value %p, length %u.\n",
wine_dbgstr_longlong(id), property, value, length);
if (property != HttpServerBindingProperty)
switch (property)
{
FIXME("Unhandled property %u.\n", property);
return ERROR_CALL_NOT_IMPLEMENTED;
}
TRACE("Binding to queue %p.\n", info->RequestQueueHandle);
group->queue = info->RequestQueueHandle;
if (group->url)
add_url(group->queue, group->url, group->context);
case HttpServerBindingProperty:
{
const HTTP_BINDING_INFO *info = value;
return ERROR_SUCCESS;
TRACE("Binding to queue %p.\n", info->RequestQueueHandle);
group->queue = info->RequestQueueHandle;
if (group->url)
add_url(group->queue, group->url, group->context);
return ERROR_SUCCESS;
}
case HttpServerLoggingProperty:
WARN("Ignoring logging property.\n");
return ERROR_SUCCESS;
default:
FIXME("Unhandled property %u.\n", property);
return ERROR_CALL_NOT_IMPLEMENTED;
}
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment