--- libwww/Library/src/HTAccess.html 1995/07/08 19:52:22 2.56 +++ libwww/Library/src/HTAccess.html 1995/08/14 03:57:03 2.57 @@ -1,7 +1,7 @@ Access manager for libwww - + @@ -186,6 +186,9 @@ extern void HTRequest_delete PARAMS((HTR

Post Web Management

+These functions are mainly used internally in the Library but there is +no reason for them not to be public. +
 extern BOOL HTRequest_addDestination		PARAMS((HTRequest * src,
 							HTRequest * dest));
@@ -293,6 +296,22 @@ typedef enum _EntityHeaderEnum {
 Extra header can be generated when initializing the ExtraHeaders field.
 
+
+

Force Reload of a Document

+ +The ForceReload flag can either force reload of +object in memory or in a disk cache. That is, if only memory version +is to reloaded - the new version can come from the local disk +cache. The default value is HT_NO_UPDATE. + +
+typedef enum _HTForceReload {
+    HT_NO_UPDATE	= 0x0,
+    HT_UPDATE_MEM	= 0x1,
+    HT_UPDATE_DISK	= 0x2
+} HTForceReload;
+
+

Functions for Loading a Document

There are several different ways of loading a document. However, the @@ -756,11 +775,20 @@ current request so that the application handling. The function must have the same return values as the other Load functions. +
Force reload
+ +This flag can either force reload of object in memory or in a disk +cache. That is, if only memory version is to reloaded - the new +version can come from the local disk cache. + +
+    HTForceReload ForceReload;
+
+
Other Flags
     BOOL BlockingIO;
-    BOOL ForceReload;
     BOOL ContentNegotiation;
 
@@ -806,11 +834,10 @@ ensure that is is selected, highlighted, loaded.
-    void *	using_cache;
     BOOL	using_proxy;
 
-Pointer to cache element if cache hit anfd if using proxy +If we are using a proxy this affects the HTTP request
     BOOL	error_block;		/* YES if stream has been used	  */