/***(c) COPYRIGHT MIT 1999.**Please first read the full copyright statement in the file COPYRIGH.*/
This module declares a SSL (using theOpenSSLlibrary, for example) transport wrapper so that libwww can use SSL asatransportthe same way it can use TCP andlocal host as transports.
The SSL module is contributed by Olga Antropova
#ifndef WWWSSL_H#define WWWSSL_H
#ifdef __cplusplusextern "C" { #endif
Thewwwsys.h file includes system-specific includefiles and flags for I/O to network and disk. The only reason for this fileis that the Internet world is more complicated than Posix and ANSI.
#include "wwwsys.h"
This module is the one that actually talks to the SSL library and handlesthe internal SSL mechanisms for verifying certificates etc.
#include "HTSSL.h"
This module registers the various parts in libwww required for handling thehttps: URI scheme.
#include "HTSSLhttps.h"
The SSL read transport stream is responsible for reading from an SSL socketand pass the data to libwww
#include "HTSSLReader.h"
The SSL write transport stream is responsible for writing data to an SSLsocket
#include "HTSSLWriter.h"
#ifdef __cplusplus} #endif#endif /* WWWSSL_H */