mirror of https://github.com/lianthony/NT4.0
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.
36 lines
716 B
36 lines
716 B
/*
|
|
This file was derived from the libwww code, version 2.15, from CERN.
|
|
A number of modifications have been made by Spyglass.
|
|
|
|
[email protected]
|
|
*/
|
|
|
|
/* /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTTP.html
|
|
HYPERTEXT TRANFER PROTOCOL
|
|
|
|
*/
|
|
#ifndef HTTP_H
|
|
#define HTTP_H
|
|
|
|
/*
|
|
|
|
CACHE CONTROL FLAG
|
|
|
|
Turn this off if you don't want HTTP protocol fetches to leave cache files. extern
|
|
BOOL HTCacheHTTP; This variable is now replaced by the (char *) HTCacheDir in
|
|
HTAccess.html Henrik 09/03-94
|
|
|
|
PROTOCOL
|
|
|
|
*/
|
|
GLOBALREF HTProtocol HTTP;
|
|
|
|
#ifdef SHTTP_ACCESS_TYPE
|
|
GLOBALREF HTProtocol SHTTP;
|
|
#endif
|
|
|
|
#endif /* HTTP_H */
|
|
|
|
/*
|
|
|
|
end of HTTP module definition */
|