-
Notifications
You must be signed in to change notification settings - Fork 3
/
draft-eriksson-oob-cache-latest.txt
784 lines (504 loc) · 28.3 KB
/
draft-eriksson-oob-cache-latest.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
Network Working Group G. Eriksson
Internet-Draft C. Holmberg
Intended status: Standards Track Ericsson
Expires: April 3, 2016 October 1, 2015
Delivering content via Out-Of-Band Cache
draft-eriksson-oob-cache-00.txt
Abstract
This document describes a framework for delivering protected HTTP
payload from an origin to a client via an out-of-band cache (oob
cache).
The framework also describes how individual mechanisms, such as
payload encryption, out-of-band content delivery, and content
integrity could be leveraged.
The framework assumes that the web administrator of the origin has
control of how much content information is exposed to the oob cache,
depending on e.g. whether the oob cache is hosted by a third party,
or the risk of a third party getting access to the information stored
at the oob cache.
The oob cache might be reachable from the origin server, or it might
be deployed behind a NAT. Both options are considered in the
document.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on April 3, 2016.
Copyright Notice
Eriksson & Holmberg Expires April 3, 2016 [Page 1]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 3
2. Abbreviations . . . . . . . . . . . . . . . . . . . . . . . . 3
3. Conventions . . . . . . . . . . . . . . . . . . . . . . . . . 3
4. Principles and Concepts . . . . . . . . . . . . . . . . . . . 4
4.1. General . . . . . . . . . . . . . . . . . . . . . . . . . 4
4.2. Architecture . . . . . . . . . . . . . . . . . . . . . . 4
4.3. OOB Cache Discovery . . . . . . . . . . . . . . . . . . . 5
4.4. Cache Map . . . . . . . . . . . . . . . . . . . . . . . . 5
4.5. Object Dependency Graph . . . . . . . . . . . . . . . . . 6
5. Procedures . . . . . . . . . . . . . . . . . . . . . . . . . 6
5.1. General . . . . . . . . . . . . . . . . . . . . . . . . . 6
5.2. Client-Origin Procedures . . . . . . . . . . . . . . . . 6
5.2.1. Initial request . . . . . . . . . . . . . . . . . . . 6
5.2.2. Cache Not Reachable . . . . . . . . . . . . . . . . . 7
5.2.3. Object integrity compromised . . . . . . . . . . . . 7
5.3. Origin-OOB Cache Procedures . . . . . . . . . . . . . . . 7
5.3.1. Registration . . . . . . . . . . . . . . . . . . . . 7
5.3.2. Pushing Resource on OOB Cache . . . . . . . . . . . . 8
5.3.3. Re-Use of Cached Resource . . . . . . . . . . . . . . 8
5.3.4. Replace Cached Resource . . . . . . . . . . . . . . . 9
5.3.5. Removal of single Cached Resource (origin server) . . 9
5.3.6. Invalidating OOB cache . . . . . . . . . . . . . . . 10
5.3.7. Removal of single Cached Resource (OOB Cache) . . . . 10
5.3.8. De-Registration . . . . . . . . . . . . . . . . . . . 10
5.4. Client-OOB Cache Procedures . . . . . . . . . . . . . . . 11
5.4.1. Request Resource from OOB Cache . . . . . . . . . . . 11
5.4.2. OOB Cache Not Reachable . . . . . . . . . . . . . . . 11
6. Controlling the client oob and cache . . . . . . . . . . . . 12
6.1. OOB Redirection Control . . . . . . . . . . . . . . . . . 12
6.2. Private OOB Cache . . . . . . . . . . . . . . . . . . . . 12
6.3. Cache Response Client Cache Control . . . . . . . . . . . 12
7. Security Considerations . . . . . . . . . . . . . . . . . . . 13
7.1. Guidelines . . . . . . . . . . . . . . . . . . . . . . . 13
Eriksson & Holmberg Expires April 3, 2016 [Page 2]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
7.2. Threats . . . . . . . . . . . . . . . . . . . . . . . . . 13
8. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 13
9. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 13
10. Change Log . . . . . . . . . . . . . . . . . . . . . . . . . 13
11. Normative References . . . . . . . . . . . . . . . . . . . . 14
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 14
1. Introduction
When content providers provide services to user, they need to
consider user security and privacy. As the Internet traffic is
transitioning towards TLS [ref], content that could previously be
cached in inline caches will need to be managed by the origin servers
of the content providers.
However, for cost and/or delivery time efficiency, there are
situations where it still makes sense for a content provider to
deliver resources from the origin to a cache, from where clients will
fetch the resources.
This document describes a framework for delivering protected HTTP
payload from an origin to a client via an out-of-band cache (oob
cache).
The framework also describes how individual mechanisms, such as
payload encryption, out-of-band content delivery, and content
integrity could be leveraged. It furthermore outlines the procedures
that could be used by the origin server to configure the use of the
oob cache.
The framework assumes that the web administrator of the origin has
control of how much content information is exposed to the oob cache,
depending on e.g. whether the oob cache is hosted by a third party,
or the risk of a third party getting access to the information stored
at the oob cache.
The oob cache might reachable from the origin server as a HTTP
server, or it might be deployed behind a NAT in which case it is not
reachable. Both options are considered relevant but in this version,
only the case where the oob cache is visible to the origin server is
described.
2. Abbreviations
TBD
3. Conventions
Eriksson & Holmberg Expires April 3, 2016 [Page 3]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [RFC2119].
4. Principles and Concepts
4.1. General
When an origin server administrator decides to deliver resources via
an oob cache, the resource information exposed to the oob cache
should be minimized, especially if the oob cache is owned by a 3rd
party or on a 3rd part cloud infrastructure. Mechanisms that can be
used for this purpose are e.g. HTTP payload encryption [ref], payload
integrity protection [ref] and OOB [ref].
The decision which resources are delivered to a user via an oob cache
might e.g. be done based on static configuration, or dynamically
based on information from an analytics tool. [ref] describes the
Object Dependency Graph, an information model of how a web sites
objects are consumed by a user and used to decide opportunistically
what to make available in a client or a cache before an explicit
request for the object(s) has been made.
NOTE: The mechanism for deciding which resources will be delivered
via an oob cache is outside the scope of this document.
4.2. Architecture
The framework assumes a triangular architecture, where the client,
origin server and the oob cache all interact with each other, and
that sensitive and critical information sent between the entities is
secured using TLS or a corresponding secure transport.
The architecture also assumes that the resources delivered out-of-
band via the oob cache from the origin server to the client are
protected using an HTTP content encryption/protection scheme.
Information associated with the resources and needed to decrypt them
is delivered to the client on the secure client-origin connection.
+---------+ +----------+
| | HTTPS | |
| Client |------------| Origin |
| | | |
+---------+ +----------+
\ /
\ /
\ HTTP(S) /
Eriksson & Holmberg Expires April 3, 2016 [Page 4]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
\ / HTTPS
\ /
\ /
+----------+
| OOB |
| Cache |
| |
+----------+
4.3. OOB Cache Discovery
A client can use different mechanisms in order to discover the
presence of available local oob caches. The discovery mechanism MUST
be secure in the sense that the client is assumed to assert the
identity of the oob cache.
TODO: look into mDNS based based discovery.
NOTE: This document assumes that the client performs the oob cache
discovery. Origin discovery of oob caches is outside the scope.
4.4. Cache Map
When the origin server places an object on an oob cache it will
create a map between the origin object URL and the cached object URL.
An out-of-bands response to the user agent can contain all or a
subset of the maps stored by the origin server. The list of maps
also contain meta data about each item, e.g. content-type and
encryption information.
+----------------------------------------------------------------------+
| Origin server location | OOB Cache location | Parameters |
|----------------------------------------------------------------------|
| example.com/ex_jsl.js | cache.ex1.com/lxUrP/75991 | 'content-type' |
| | | 'oob-control' |
| | | 'max-age' |
| | | 'encryption-key'|
| -----------------------|---------------------------|-----------------|
| example.com/style.css | cache.ex1.com/lxUrP/74113 | 'content-type' |
| | | ... |
| -----------------------|---------------------------|-----------------|
| example.com/mustang.jpg| cache.ex1.cm/lxUrP/56333 | ... |
+----------------------------------------------------------------------+
Eriksson & Holmberg Expires April 3, 2016 [Page 5]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
An origin server may be designed such that it keeps track of
individual client's cache map, which implies managing large amounts
of states. Another design with fewer states is an origin server that
does not keep track on the status of individual client's cache map.
Instead, each time the client requests a resource from the origin
server, a new cache map is created and included in the response to
the client. It is left to the origin server developer to decide
which design that is more suitable for their respective needs.
Further details of the cache map are described in [ref].
4.5. Object Dependency Graph
An object dependency graph describes relationships between objects
including dependencies and probable sequence of browsing through a
web site. An instance of the cache map is typically created using a
object dependency graph as input to a process creating a cache map
with a suitable depth. This description of this process is outside
this document.
5. Procedures
5.1. General
This section describes the procedures that can take place between the
origin server and the oob cache, between the origin server and the
client, and between the client and the oob cache.
5.2. Client-Origin Procedures
5.2.1. Initial request
In this use case a client has discovered the presence of a oob cache.
The following steps take place:
o The client establishes a secure TLS connection to the origin
server.
o The client requests the resource appending information about the
presence of a oob cache.
o The origin server decides to use the oob cache for the requested
object. It may also decide to refer the delivery for other
objects than the one requested.
o The origin server configures the oob cache and responds to the
client with a cache map.
Eriksson & Holmberg Expires April 3, 2016 [Page 6]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
TBD: The above is applicable if the oob cache is reachable for the
origin server. The case when the oob cache is behind a NAT is TBD.
5.2.2. Cache Not Reachable
This case starts with the client receiving an network error when
requesting an object from the oob cache. This procedure uses the oob
[ref] error handling.
The following steps take place:
o The client send a request for the resource to the origin server
appending a LINK header with information about the type of error.
o In case of a "server unreachable", the origin server responds with
the resource. The origin server MAY provide an updated cache map
in the response to the client. In case of "object not found" and
the origin server has a priori knowledge of the reason being that
it has deleted the object, the origin server reponds with the
resource. It MAY provide an updated cache map.
o The origin server may have decided that the oob cache no longer
should be used. In that case, the origin server reponds with the
resource and an empty cache map. TODO: How is this expressed.
o The client updates the cache map. In case of an empty cache map,
the client MUST consider the oob delivery to be invalidated
henceforth. The client SHOULD include the BC header in future
requests for resources from the origin server.
5.2.3. Object integrity compromised
This case starts with the client detecting that the integrity of the
object retrieved from an oob cache has been compromised.
TBD.
5.3. Origin-OOB Cache Procedures
5.3.1. Registration
In this case the client has informed the origin server about the
presence of an oob cache in a suitable network location along with
willingness to accept OOB, and the origin server decides to deliver
resources to the client via the oob cache. The following procedure
describes how the origin server registers itself with the oob cache,
and exchanges the necessary information needed for the out-of-band
delivery of the resources.
Eriksson & Holmberg Expires April 3, 2016 [Page 7]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
The following steps take place:
o The origin server establishes a secure TLS connection with the oob
cache, using the location information of the oob cache received
from the client.
o The origin server sends a register request (using a origin-cache
protocol) to the oob cache.
o The oob cache accepts the registration, and sends a response which
contains available storage quota.
TBD: The origin should be authenticated by the oob cache. The
mechanism for this is TBD. How to assert a 'secure' TLS connection
is TBD.
5.3.2. Pushing Resource on OOB Cache
In this case the origin has decided that it will deliver a resource
requested by the client via the oob cache.
The following steps take place:
o The origin server pushes the resource to the oob cache, using the
connection established during the Registration procedure. The
origin server also indicates the desired max expire time
associated with the resource, and the selected location URL that
the client shall use when requesting the resource from the oob
cache.
o The oob cache sends a response, and indicates successful storage
of the resource. The oob cache also indicates the selected max
expiry time (equal or less than the time requested by the origin
server).
o The origin server sends a response to the client. The response
contains a cache map [ref]. For any given resource, the cache map
contains the origin server location URL, the oob cache location
URL, and additional information (e.g. max expire time, client oob
cache directives, content information, integrity information).
5.3.3. Re-Use of Cached Resource
Eriksson & Holmberg Expires April 3, 2016 [Page 8]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
In this case the origin has previously pushed a resource, requested
by a client to an oob cache, when a new client requests the same
resource and indicates the presence of the same oob cache. The
origin decides to, instead of pushing the same resource to an oob
cache again, refer the new client to the the previously cached
resource.
The following steps take place:
o The origin server sends a response to the client. The response
contains a cache map [ref]. For any given resource, the cache map
contains the origin server location URL, the oob cache location
URL, and additional information (e.g. max expire time, client
cache directives, content information).
5.3.4. Replace Cached Resource
In this case the origin server replaces the content of a resource
stored at a oob cache. The location URL associated with the resource
does not change, but content information e.g. the resource content
signature may change.
The following steps take place:
o The origin server pushes the new resource content to the oob
cache, indicating that the new content shall replace the content
previously stored.
o The oob cache sends a response, and indicates that the old
resource content has successfully been replaced with the new
resource content.
The origin server should use no_cache or no_store directive to the
client cache for objects whose content may be replaced making the
client check with the origin server before retrieving the content
from the oob cache.
5.3.5. Removal of single Cached Resource (origin server)
In this case the origin server requests the oob cache to remove a
resource that the origin server has previously pushed to the oob
cache, and for which the expire time has yet not been reached.
The following steps take place:
o The origin server sends a request (using an origin-cache protocol)
to the oob cache, indicating which resource the origin server
wants the oob cache to remove.
Eriksson & Holmberg Expires April 3, 2016 [Page 9]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
o The oob cache sends a response, indicating that the resource was
successfully removed from the oob cache.
5.3.6. Invalidating OOB cache
In this case, the origin server has decided to not use an oob cache
any more and want to invalidate oob deliveries to it for all clients
using it. The origin server is assumed to maintain a list of clients
served by a particular cache.
o The origin server de-registers from the cache.
o When a client contacts the origin server, the origin server
responds with an empty cache map.
o Upon receiption of an empty cache map, the client MUST consider
the oob delivery invalidated.
5.3.7. Removal of single Cached Resource (OOB Cache)
In this case the oob cache decides to remove a stored resource before
the expire time associated with the resource has been reached.
The following steps take place:
o The oob cache sends a request to the origin server, indicating
that the oob cache has removed a previously stored resource.
5.3.8. De-Registration
In this case the origin server de-registers with an oob cache with
whom it has previously registered.
The following steps take place:
o The origin server sends a de-register request (using an origin-
cache protocol) to the oob cache.
o The oob cache sends a response, and indicates successful de-
registration. The origin server MUST NOT push any further
resources to the oob cache (until it first registers itself with
the oob cache again).
Eriksson & Holmberg Expires April 3, 2016 [Page 10]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
OPEN ISSUE: What happens to resources stored at the oob cache when
the origin server de-registers. Will they remain until the max
expire time has been reached? Will they be deleted? Should the oob
cache refuse the de-registration as long as there are stored
resources? Should the origin server be able to choose what happens
to stored resources when it de-registers?
5.4. Client-OOB Cache Procedures
5.4.1. Request Resource from OOB Cache
In this case the client is requesting a resource from the oob cache.
The client has previously received a cache map from the origin
server, in which there is an entry indicating that the requested
resource shall be retrieved from an oob cache.
The client has checked if cache directive no_cache or no_store
applies. If so, it contacts the origin server to check if oob
delivery and associated content information is still valid.
The following steps take place:
o The client sends a request to the oob cache in order to retrieve a
resource.
o The oob cache sends a response, which contains the requested
resource.
o The client combines the response from the oob cache with content
information from the origin server to create a response as if it
came from the origin server.
5.4.2. OOB Cache Not Reachable
In this case the client is, based on information in the cache map,
trying to retrieve a resource from the oob cache, but either receives
a response (e.g. 404 Not Found) indicating that the oob cache cannot
be reached, or receives a response indicating that the resource is
not available on the oob cache.
The following steps take place:
o The client sends a request to the oob cache, in order to retrieve
a resource.
o The client receives a response either indicating that the oob
cache cannot be reached, or indicating that the resource is not
available at the oob cache.
Eriksson & Holmberg Expires April 3, 2016 [Page 11]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
o The client interacts with the origin server, see [ref]
SOMEOTHERPLACE: The origin server may decide to deliver the resource
directly to the client or refer again to a oob cache.
6. Controlling the client oob and cache
6.1. OOB Redirection Control
NOT READY
The client cache will contain two entries: one for the response from
the origin and one for the response from the cache. The "oob
control" and "ma"- parameter in the cache map controls the
redirection from the origin to a cache. The redirection applies when
the client receives the "ma" parameter in the map in the response and
for as long as the ma parameter stipulates. The "oob control" can
have two values; "private" and "no_cache" and both can be present.
The "private" usage is described below. If "no_cache" is present for
a resource, the client MUST perform an eTag pre-flight to the origin.
The ma parameter has a global relevance, meaning it has precedence
over client cache control directives for the cache response entry.
6.2. Private OOB Cache
NOT READY
The oob cache can be either shared or private. The origin server
controls the behaviour of the client by adding a "private directive"
in the cache map associated with the resource. Additionaly, the
origin server can restrict who can read the data using the content
encryption key. How this is done in the origin server is not in
scope of this document.
The client MUST treat a resource, marked with the private directive,
as private. This means that the client MUST only provide the
resource to the browsing context authenticated with the origin
server.
6.3. Cache Response Client Cache Control
NOT READY
The oob cache might control the client cache handling of a resource,
using the HTTP directives (e.g. no-cache, max-age).
Eriksson & Holmberg Expires April 3, 2016 [Page 12]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
A no-cache directive MUST be treated such by the client that a pre-
flight e-tag check is done towards the cache. A max-age directive
MUST be treated as specified in RFC H2 or whatever TODO: reference
for client cache control behavior. No-store MUST be interpreted to
mean do not cache the cache response.
7. Security Considerations
A lot of TODO's.
7.1. Guidelines
o The oob cache resource identity SHOULD be a pseudo-random string
o The origin server SHOULD use random padding of content delivered
oob.
7.2. Threats
In case of a group key and the client group is open, an oob cache may
act as a client and obtain the key. Measures for disabling the cache
to act as a client MUST be taken to avoid the cache not know the
origin server such as having an "anonymization" function in between a
cache and an origin. TODO: Outline such a function between the
origin server and oob cache.
If the client group is restricted with strong client authentication
towards the origin (closed) or groups with single clients or single
requests, then a cache cannot act as a client towards the origin
server.
If the cache is individual (private), the cache can still see the
user downloaded the same file at different times and/or at different
locations.
If the cache is shared between several clients, the cache can see
that the users downloaded the same file.
8. IANA Considerations
TBD
9. Acknowledgements
TBD
10. Change Log
Eriksson & Holmberg Expires April 3, 2016 [Page 13]
Internet-Draft Delivering content via Out-Of-Band Cache October 2015
[RFC EDITOR NOTE: Please remove this section when publishing]
11. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/
RFC2119, March 1997,
<http://www.rfc-editor.org/info/rfc2119>.
[RFC5234] Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", STD 68, RFC 5234, DOI 10.17487/
RFC5234, January 2008,
<http://www.rfc-editor.org/info/rfc5234>.
Authors' Addresses
Goran AP Eriksson
Ericsson
Farogatan 6
Stockholm 16480
Sweden
Email: [email protected]
Christer Holmberg
Ericsson
Hirsalantie 11
Jorvas 02420
Finland
Email: [email protected]
Eriksson & Holmberg Expires April 3, 2016 [Page 14]