struttura HTTP_SERVICE_CONFIG_SSL_SNI_KEY (http.h)
La struttura HTTP_SERVICE_CONFIG_SSL_SNI_KEY funge da chiave in base alla quale un determinato record di certificato SNI (Secure Sockets Layer) viene identificato nell'archivio SNI SSL. Viene visualizzato nella HTTP_SERVICE_CONFIG_SSL_SNI_SET e nelle strutture HTTP_SERVICE_CONFIG_SSL_SNI_QUERY e viene passato come parametro pConfigInformation a HttpDeleteServiceConfiguration, HttpQueryServiceConfiguration e HttpSetServiceConfiguration quando il parametro ConfigId è impostato su HttpServiceConfigSslSniCertInfo.
Sintassi
typedef struct _HTTP_SERVICE_CONFIG_SSL_SNI_KEY {
SOCKADDR_STORAGE IpPort;
PWSTR Host;
} HTTP_SERVICE_CONFIG_SSL_SNI_KEY, *PHTTP_SERVICE_CONFIG_SSL_SNI_KEY;
Members
IpPort
Struttura SOCKADDR_STORAGE che contiene l'indirizzo IPv4 (Internet Protocol versione 4) a cui è associato questo certificato SNI SSL. Deve essere impostato sull'indirizzo con caratteri jolly IPv4 di tipo SOCKADDR_IN con ss_family impostato su AF_INET e sin_addr riempito con zeri. La porta può essere qualsiasi porta valida.
Host
Puntatore a una stringa Unicode UTF-16 con terminazione Null che rappresenta il nome host.
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows 8 [solo app desktop] |
Server minimo supportato | Windows Server 2012 [solo app desktop] |
Intestazione | http.h |
Vedi anche
HTTP_SERVICE_CONFIG_SSL_SNI_QUERY
HTTP_SERVICE_CONFIG_SSL_SNI_SET