Closed
Bug 262350
Opened 20 years ago
Closed 19 years ago
httpchannel::SetCacheToken unimplemented
Categories
(Core :: Networking: HTTP, defect)
Core
Networking: HTTP
Tracking
()
People
(Reporter: Biesinger, Assigned: Biesinger)
References
()
Details
Attachments
(1 file)
6.71 KB,
patch
|
Details | Diff | Splinter Review |
nsICachingChannel documents:
61 * A cache token retrieved from a particular instance of nsICachingChannel
62 * could be set on another instance of nsICachingChannel provided the
63 * underlying implementations are compatible. The implementation of
64 * nsICachingChannel would be expected to only read from the cache entry
65 * identified by the cache token and not try to validate it.
http://lxr.mozilla.org/seamonkey/source/netwerk/base/public/nsICachingChannel.idl#61
nsHttpChannel.cpp contains:
3800 NS_IMETHODIMP
3801 nsHttpChannel::SetCacheToken(nsISupports *token)
3802 {
3803 return NS_ERROR_NOT_IMPLEMENTED;
3804 }
Assignee | ||
Comment 1•20 years ago
|
||
still needed to be done: turn a cache entry with just write access (2) that is
marked valid into an entry with just read access (1).
Assignee | ||
Comment 2•19 years ago
|
||
hm, actually, this is a duplicate...
*** This bug has been marked as a duplicate of 72519 ***
You need to log in
before you can comment on or make changes to this bug.
Description
•