📄 htsslhttps.h
字号:
/* W3C Sample Code Library libwww Initializationg of SSL Transport As https Access Scheme! Initializationg of SSL Transport As https Access Scheme!This module sets up the SSL transport for handling the https URIaccess scheme. In fact the SSL module itself is completely independent andcould as well be negotiated instead of getting a new URI scheme.The module is contributed by Olga Antropova*/#ifndef _HTSSLHTTPS_H#define _HTSSLHTTPS_H/*The initialization function initialies the SSL transports by doing the following: o Setting up a SSL application context o Registering the transport in the libwww HTTransport Manager o Registering the HTTP protocol module as a protocol handler in the libwww HTProtocol Manager for the https: access scheme o Registering a set of filters for handling HTTP caching, redirection, and authentication The termination function removes the application context, unregisteres theSSL transport in the libwww HTTransport Manager,and unregisteres the other things set up when initializing the SSL transport*/#ifndef SSL_PORT#define SSL_PORT 443#endifextern BOOL HTSSLhttps_init (BOOL preemptive);extern BOOL HTSSLhttps_isInitialized (void);extern BOOL HTSSLhttps_terminate (void);/**/#endif /* _HTSSLHTTPS_H *//* @(#) $Id: HTSSLhttps.html,v 1.1 2000/06/09 16:28:57 kahan Exp $*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -