Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 2000-2001 Microsoft Corporation
Module Name:
httpconnp.h
Abstract:
This module contains private declarations for manipulation of HTTP_CONNECTION objects.
Author:
Eric Stenson (ericsten) 01-Nov-2000
Revision History:
--*/
#ifndef __HTTPCONNP_H__
#define __HTTPCONNP_H__
//
// private types
//
//
// for binding connections to app pool processes
//
#define IS_VALID_PROC_BINDING(pObject) \
(((pObject) != NULL) && ((pObject)->Signature == UL_APOOL_PROC_BINDING_POOL_TAG))
typedef struct _UL_APOOL_PROC_BINDING { ULONG Signature; // UL_APOOL_PROC_BINDING_POOL_TAG
LIST_ENTRY BindingEntry;
PUL_APP_POOL_OBJECT pAppPool; PUL_APP_POOL_PROCESS pProcess; } UL_APOOL_PROC_BINDING, *PUL_APOOL_PROC_BINDING;
#ifdef __cplusplus
extern "C" { #endif // __cplusplus
//
// Private prototypes.
//
PUL_APOOL_PROC_BINDING UlpCreateProcBinding( IN PUL_APP_POOL_OBJECT pAppPool, IN PUL_APP_POOL_PROCESS pProcess );
VOID UlpFreeProcBinding( IN PUL_APOOL_PROC_BINDING pBinding );
PUL_APOOL_PROC_BINDING UlpFindProcBinding( IN PUL_HTTP_CONNECTION pHttpConnection, IN PUL_APP_POOL_OBJECT pAppPool );
#ifdef __cplusplus
}; // extern "C"
#endif // __cplusplus
#endif // __HTTPCONNP_H__
|