Commit 2f272389 authored by Andrey Turkin's avatar Andrey Turkin Committed by Alexandre Julliard

httpapi: Add HttpDeleteServiceConfiguration, HttpQueryServiceConfiguration and…

httpapi: Add HttpDeleteServiceConfiguration, HttpQueryServiceConfiguration and HttpSetServiceConfiguration stubs.
parent 3104f77e
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
@ stub HttpCreateFilter @ stub HttpCreateFilter
@ stub HttpCreateHttpHandle @ stub HttpCreateHttpHandle
@ stub HttpDeleteConfigGroup @ stub HttpDeleteConfigGroup
@ stub HttpDeleteServiceConfiguration @ stdcall HttpDeleteServiceConfiguration(ptr long ptr long ptr)
@ stub HttpFilterAccept @ stub HttpFilterAccept
@ stub HttpFilterAppRead @ stub HttpFilterAppRead
@ stub HttpFilterAppWrite @ stub HttpFilterAppWrite
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
@ stub HttpQueryConfigGroupInformation @ stub HttpQueryConfigGroupInformation
@ stub HttpQueryControlChannelInformation @ stub HttpQueryControlChannelInformation
@ stub HttpQueryServerContextInformation @ stub HttpQueryServerContextInformation
@ stub HttpQueryServiceConfiguration @ stdcall HttpQueryServiceConfiguration(ptr long ptr long ptr long ptr ptr)
@ stub HttpReadFragmentFromCache @ stub HttpReadFragmentFromCache
@ stub HttpReceiveClientCertificate @ stub HttpReceiveClientCertificate
@ stub HttpReceiveHttpRequest @ stub HttpReceiveHttpRequest
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
@ stub HttpSetConfigGroupInformation @ stub HttpSetConfigGroupInformation
@ stub HttpSetControlChannelInformation @ stub HttpSetControlChannelInformation
@ stub HttpSetServerContextInformation @ stub HttpSetServerContextInformation
@ stub HttpSetServiceConfiguration @ stdcall HttpSetServiceConfiguration(ptr long ptr long ptr)
@ stub HttpShutdownAppPool @ stub HttpShutdownAppPool
@ stub HttpShutdownFilter @ stub HttpShutdownFilter
@ stdcall HttpTerminate(long ptr) @ stdcall HttpTerminate(long ptr)
......
...@@ -83,3 +83,77 @@ ULONG WINAPI HttpTerminate( ULONG flags, PVOID reserved ) ...@@ -83,3 +83,77 @@ ULONG WINAPI HttpTerminate( ULONG flags, PVOID reserved )
FIXME( "(0x%x, %p): stub!\n", flags, reserved ); FIXME( "(0x%x, %p): stub!\n", flags, reserved );
return NO_ERROR; return NO_ERROR;
} }
/***********************************************************************
* HttpDeleteServiceConfiguration (HTTPAPI.@)
*
* Remove configuration record from HTTP Server API configuration store
*
* PARAMS
* handle [I] reserved, must be 0
* type [I] configuration record type
* config [I] buffer which contains configuration record information
* length [I] length of configuration record buffer
* overlapped [I] reserved, must be NULL
*
* RETURNS
* NO_ERROR if function succeeds, or error code if function fails
*
*/
ULONG WINAPI HttpDeleteServiceConfiguration( HANDLE handle, HTTP_SERVICE_CONFIG_ID type,
PVOID config, ULONG length, LPOVERLAPPED overlapped )
{
FIXME( "(%p, %d, %p, %d, %p): stub!\n", handle, type, config, length, overlapped );
return NO_ERROR;
}
/***********************************************************************
* HttpQueryServiceConfiguration (HTTPAPI.@)
*
* Retrieves configuration records from HTTP Server API configuration store
*
* PARAMS
* handle [ I] reserved, must be 0
* type [ I] configuration records type
* query [ I] buffer which contains query data used to retrieve records
* query_len [ I] length of query buffer
* buffer [IO] buffer to store query results
* buffer_len [ I] length of output buffer
* data_len [ O] optional pointer to a buffer which receives query result length
* overlapped [ I] reserved, must be NULL
*
* RETURNS
* NO_ERROR if function succeeds, or error code if function fails
*
*/
ULONG WINAPI HttpQueryServiceConfiguration( HANDLE handle, HTTP_SERVICE_CONFIG_ID type,
PVOID query, ULONG query_len, PVOID buffer, ULONG buffer_len,
PULONG data_len, LPOVERLAPPED overlapped )
{
FIXME( "(%p, %d, %p, %d, %p, %d, %p, %p): stub!\n", handle, type, query, query_len,
buffer, buffer_len, data_len, overlapped );
return ERROR_FILE_NOT_FOUND;
}
/***********************************************************************
* HttpSetServiceConfiguration (HTTPAPI.@)
*
* Add configuration record to HTTP Server API configuration store
*
* PARAMS
* handle [I] reserved, must be 0
* type [I] configuration record type
* config [I] buffer which contains configuration record information
* length [I] length of configuration record buffer
* overlapped [I] reserved, must be NULL
*
* RETURNS
* NO_ERROR if function succeeds, or error code if function fails
*
*/
ULONG WINAPI HttpSetServiceConfiguration( HANDLE handle, HTTP_SERVICE_CONFIG_ID type,
PVOID config, ULONG length, LPOVERLAPPED overlapped )
{
FIXME( "(%p, %d, %p, %d, %p): stub!\n", handle, type, config, length, overlapped );
return NO_ERROR;
}
...@@ -41,9 +41,22 @@ typedef struct _HTTPAPI_VERSION ...@@ -41,9 +41,22 @@ typedef struct _HTTPAPI_VERSION
#define HTTP_INITIALIZE_SERVER 0x00000001 #define HTTP_INITIALIZE_SERVER 0x00000001
#define HTTP_INITIALIZE_CONFIG 0x00000002 #define HTTP_INITIALIZE_CONFIG 0x00000002
typedef enum _HTTP_SERVICE_CONFIG_ID
{
HttpServiceConfigIPListenList,
HttpServiceConfigSSLCertInfo,
HttpServiceConfigUrlAclInfo,
HttpServiceConfigTimeout,
HttpServiceConfigMax
} HTTP_SERVICE_CONFIG_ID, *PHTTP_SERVICE_CONFIG_ID;
ULONG WINAPI HttpInitialize(HTTPAPI_VERSION,ULONG,PVOID); ULONG WINAPI HttpInitialize(HTTPAPI_VERSION,ULONG,PVOID);
ULONG WINAPI HttpTerminate(ULONG,PVOID); ULONG WINAPI HttpTerminate(ULONG,PVOID);
ULONG WINAPI HttpDeleteServiceConfiguration(HANDLE,HTTP_SERVICE_CONFIG_ID,PVOID,ULONG,LPOVERLAPPED);
ULONG WINAPI HttpQueryServiceConfiguration(HANDLE,HTTP_SERVICE_CONFIG_ID,PVOID,ULONG,PVOID,ULONG,PULONG,LPOVERLAPPED);
ULONG WINAPI HttpSetServiceConfiguration(HANDLE,HTTP_SERVICE_CONFIG_ID,PVOID,ULONG,LPOVERLAPPED);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
......
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