draft-vixie-icp-htcp-01.txt
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:29k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1.    ICP Working Group                                            Paul Vixie
  2.    INTERNET-DRAFT                                        Vixie Enterprises
  3.    <draft-vixie-icp-htcp-01.txt>                            February, 1998
  4.                     Hyper Text Caching Protocol (HTCP/0.0)
  5.    Status of this Memo
  6.       This document is an Internet-Draft.  Internet-Drafts are working
  7.       documents of the Internet Engineering Task Force (IETF), its areas,
  8.       and its working groups.  Note that other groups may also distribute
  9.       working documents as Internet-Drafts.
  10.       Internet-Drafts are draft documents valid for a maximum of six months
  11.       and may be updated, replaced, or obsoleted by other documents at any
  12.       time.  It is inappropriate to use Internet-Drafts as reference
  13.       material or to cite them other than as ``work in progress.''
  14.       To learn the current status of any Internet-Draft, please check the
  15.       ``1id-abstracts.txt'' listing contained in the Internet-Drafts Shadow
  16.       Directories on ftp.is.co.za (Africa), nic.nordu.net (Europe),
  17.       munnari.oz.au (Pacific Rim), ds.internic.net (US East Coast), or
  18.       ftp.isi.edu (US West Coast).
  19.    Abstract
  20.       This draft describes HTCP, a protocol for discovering HTTP caches and
  21.       cached data, managing sets of HTTP caches, and monitoring cache
  22.       activity.
  23.    1 - Definitions, Rationale and Scope
  24.    1.1. HTTP (see [RFC2068]) permits the transfer of web objects from
  25.    ``origin servers'', possibly via ``proxies'' (which are allowed under
  26.    some circumstances to ``cache'' such objects for subsequent reuse) to
  27.    ``clients'' which consume the object in some way, usually by displaying
  28.    it as part of a ``web page.''  HTTP/1.0 and later permit ``headers'' to
  29.    be included in a request and/or a response, thus expanding upon the
  30.    HTTP/0.9 (and earlier) behaviour of specifying only a URL in the request
  31.    and offering only a body in the response.
  32.    Expires August 1998                                             [Page 1]
  33.    INTERNET-DRAFT                    HTCP                     February 1998
  34.    1.2. ICP (see [RFC2186]) permits caches to be queried as to their
  35.    content, usually by other caches who are hoping to avoid an expensive
  36.    fetch from a distant origin server.  ICP was designed with HTTP/0.9 in
  37.    mind, such that only the URL (without any headers) is used when
  38.    describing cached content, and the possibility of multiple compatible
  39.    bodies for the same URL had not yet been imagined.
  40.    1.3. This document specifies a Hyper Text Caching Protocol (HTCP or
  41.    simply HoT CraP) which permits full request and response headers to be
  42.    used in cache management, and expands the domain of cache management to
  43.    include monitoring a remote cache's additions and deletions, requesting
  44.    immediate deletions, and sending hints about web objects such as the
  45.    third party locations of cacheable objects or the measured
  46.    uncacheability or unavailability of web objects.
  47.    2 - HTTP Protocol
  48.    2.1. All multi-octet HTCP protocol elements are transmitted in network
  49.    byte order.  All RESERVED fields should be set to binary zero by senders
  50.    and left unexamined by receivers.  Headers must be presented with the
  51.    CRLF line termination, as in HTTP.  Any hostnames specified should be
  52.    compatible between sender and receiver, such that if a private naming
  53.    scheme (such as HOSTS.TXT or NIS) is in use, names depending on such
  54.    schemes will only be sent to HTCP neighbors who are known to participate
  55.    in said schemes.  Raw addresses (dotted quad IPv4, or colon-format IPv6)
  56.    addresses are universal, as are public DNS names.  Use of private names
  57.    or addresses will require special operational care.
  58.    2.2. UDP must be supported.  HTCP agents must not be isolated from
  59.    NETWORK failures and delays.  An HTCP agent should be prepared to act in
  60.    useful ways when no response is forthcoming, or when responses are
  61.    delayed or reordered or damaged.  TCP is optional and is expected to be
  62.    used only for protocol debugging.
  63.    2.3. An HTCP Message has the following general format:
  64.       +---------------------+
  65.       |        HEADER       | tells message length and protocol versions
  66.       +---------------------+
  67.       |         DATA        | HTCP message (varies per major version number)
  68.       +---------------------+
  69.       |         AUTH        | optional authentication for transaction
  70.       +---------------------+
  71.    Expires August 1998                                             [Page 2]
  72.    INTERNET-DRAFT                    HTCP                     February 1998
  73.    2.4. An HTCP/*.* HEADER has the following format:
  74.                     +0 (MSB)                            +1 (LSB)
  75.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  76.       0: |                             LENGTH                            |
  77.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  78.       2: |             MAJOR             |             MINOR             |
  79.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  80.    LENGTH  is the message length, inclusive of all header and data octets,
  81.            including the LENGTH field itself.  This field will be equal to
  82.            the UDP payload size (``record length''), and can include
  83.            padding, i.e., not all octets of the message need be used in the
  84.            DATA and AUTH sections.
  85.    MAJOR   is the major version number (0 for this specification).  The
  86.            DATA section of an HTCP message need not be upward or downward
  87.            compatble between different major version numbers.
  88.    MINOR   is the minor version number (0 for this specification).  Feature
  89.            levels and interpretation rules can vary depending on this
  90.            field, in particular RESERVED fields can take on new (though
  91.            optional) meaning in successive minor version numbers within the
  92.            same major version number.
  93.    2.4.1. It is expected that an HTCP initiator will know the version
  94.    number of a prospective HTCP responder, or that the initiator will probe
  95.    using declining values for MINOR and MAJOR (beginning with the highest
  96.    locally supported value) and locally cache the probed version number of
  97.    the responder.
  98.    2.4.2. Higher MAJOR numbers are to be preferred, as are higher MINOR
  99.    numbers within a particular MAJOR number.
  100.    Expires August 1998                                             [Page 3]
  101.    INTERNET-DRAFT                    HTCP                     February 1998
  102.    2.5. An HTCP/0.* DATA has the following structure:
  103.                     +0 (MSB)                            +1 (LSB)
  104.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  105.       0: |                             LENGTH                            |
  106.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  107.       2: |    OPCODE     |   RESPONSE    |        RESERVED       |F1 |RR |
  108.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  109.       4: |                             MSG-ID                            |
  110.          +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +
  111.       6: |                             MSG-ID                            |
  112.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  113.       8: |                                                               |
  114.          /                            OP-DATA                            /
  115.          /                                                               /
  116.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  117.    LENGTH    is the number of octets of the message which are reserved for
  118.              the DATA section, including the LENGTH field itself.  This
  119.              number can include padding, i.e., not all octets reserved by
  120.              LENGTH need be used in OP-DATA.
  121.    OPCODE    is the operation code of an HTCP transaction.  An HTCP
  122.              transaction can consist of multiple HTCP messages, e.g., a
  123.              request (sent by the initiator), or a response (sent by the
  124.              responder).
  125.    RESPONSE  is a numeric code indicating the success or failure of a
  126.              transaction.  It should be set to zero (0) by requestors and
  127.              ignored by responders.  Each operation has its own set of
  128.              response codes, which are described later.  The overall
  129.              message has a set of response codes which are as follows:
  130.                  0   authentication wasn't used but is required
  131.                  1   authentication was used but unsatisfactorily
  132.                  2   opcode not implemented
  133.                  3   major version not supported
  134.                  4   minor version not supported (major version is ok)
  135.                  5   inappropriate, disallowed, or undesirable opcode
  136.              The above response codes all indicate errors and all depend
  137.              for their visibility on MO=1 (as specified below).
  138.    Expires August 1998                                             [Page 4]
  139.    INTERNET-DRAFT                    HTCP                     February 1998
  140.    RR        is a flag indicating whether this message is a request (0) or
  141.              response (1).
  142.    F1        is overloaded such that it is used differently by requestors
  143.              than by responders.  If RR=0, then F1 is defined as RD.  If
  144.              RR=1, then F1 is defined as MO.
  145.    RD        is a flag which if set to 1 means that a response is desired.
  146.              Some OPCODEs require RD to be set to 1 to be meaningful.
  147.    MO        (em-oh) is a flag which indicates whether the RESPONSE code is
  148.              to be interpreted as a response to the overall message (fixed
  149.              fields in DATA or any field of AUTH) [MO=1] or as a response
  150.              to fields in the OP-DATA [MO=0].
  151.    MSG-ID    is a 32-bit value which when combined with the initiator's
  152.              network address, uniquely identifies this HTCP transaction.
  153.              care should be taken not to reuse MSG-ID's within the life-
  154.              time of a UDP datagram.
  155.    OP-DATA   is opcode-dependent and is defined below, per opcode.
  156.    2.6. An HTCP/0.0 AUTH has the following structure:
  157.                     +0 (MSB)                            +1 (LSB)
  158.           +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  159.        0: |                             LENGTH                            |
  160.           +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  161.        2: |                            SIG-TIME                           |
  162.           +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +
  163.        4: |                            SIG-TIME                           |
  164.           +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  165.        6: |                           SIG-EXPIRE                          |
  166.           +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +   +
  167.        8: |                           SIG-EXPIRE                          |
  168.           +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  169.       10: |                                                               |
  170.           /                            KEY-NAME                           /
  171.           /                                                               /
  172.           +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  173.        n: |                                                               |
  174.           /                            SIGNATURE                          /
  175.           /                                                               /
  176.           +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  177.    Expires August 1998                                             [Page 5]
  178.    INTERNET-DRAFT                    HTCP                     February 1998
  179.    LENGTH      is the number of octets used by the AUTH, including the
  180.                LENGTH field itself.  If the optional AUTH is not being
  181.                transmitted, this field should be set to 2 (two).  LENGTH
  182.                can include padding, which means that not all octets
  183.                reserved by LENGTH will necessarily be consumed by
  184.                SIGNATURE.
  185.    SIG-TIME    is an unsigned binary count of the number of seconds since
  186.                00:00:00 1-Jan-70 UTC at the time the SIGNATURE is
  187.                generated.
  188.    SIG-EXPIRE  is an unsigned binary count of the number of seconds since
  189.                00:00:00 1-Jan-70 UTC at the time the SIGNATURE is
  190.                considered to have expired.
  191.    KEY-NAME    is a COUNTSTR which specifies the name of a shared secret.
  192.                (Each HTCP implementation is expected to allow configuration
  193.                of several shared secrets, each of which will have a name.)
  194.    SIGNATURE   is a COUNTSTR which holds the HMAC-MD5 digest of the
  195.                following elements, each of which is digested in its ``on
  196.                the wire'' format, including transmitted padding if any is
  197.                covered by a field's associated LENGTH:
  198.                         IP SRC ADDR                     [4 octets]
  199.                         IP SRC PORT                     [2 octets]
  200.                         IP DST ADDR                     [4 octets]
  201.                         IP DST PORT                     [2 octets]
  202.                         HTCP MAJOR version number       [1 octet]
  203.                         HTCP MINOR version number       [1 octet]
  204.                         SIG-TIME                        [4 octets]
  205.                         SIG-EXPIRE                      [4 octets]
  206.                         HTCP DATA                       [variable]
  207.                         KEY-NAME (the whole COUNTSTR)   [variable]
  208.    2.6.1. Shared secrets should be cryptorandomly generated and should be
  209.    at least a few hundred octets in size.
  210.    Expires August 1998                                             [Page 6]
  211.    INTERNET-DRAFT                    HTCP                     February 1998
  212.    3 - Data Types
  213.    HTCP/0.* data types are defined as follows:
  214.    3.1. COUNTSTR is a counted string whose format is:
  215.                     +0 (MSB)                            +1 (LSB)
  216.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  217.       0: |                             LENGTH                            |
  218.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  219.       2: |                                                               |
  220.          /                              TEXT                             /
  221.          /                                                               /
  222.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  223.    LENGTH  is the number of octets which will follow in TEXT.  This field
  224.            is *not* self-inclusive as is the case with other HTCP LENGTH
  225.            fields.
  226.    TEXT    is a stream of uninterpreted octets, usually ISO8859-1
  227.            ``characters''.
  228.    3.2. SPECIFIER is used with the TST and CLR request messages, defined
  229.    below.  Its format is:
  230.       +---------------------+
  231.       |        METHOD       | : COUNTSTR
  232.       +---------------------+
  233.       |         URL         | : COUNTSTR
  234.       +---------------------+
  235.       |       VERSION       | : COUNTSTR
  236.       +---------------------+
  237.       |       REQ-HDRS      | : COUNTSTR
  238.       +---------------------+
  239.    METHOD    (Since HTCP only returns headers, methods GET and HEAD are
  240.              equivilent, and no other methods are defined for HTCP at this
  241.              time.)
  242.    URL       (The URL should always include a ``:''<port> specifier, but in
  243.              its absense, port 80 should be imputed by a receiver.)
  244.    Expires August 1998                                             [Page 7]
  245.    INTERNET-DRAFT                    HTCP                     February 1998
  246.    VERSION   is an entire HTTP version string such as ``HTTP/1.1''.
  247.              VERSION strings with prefixes other than ``HTTP/'' are outside
  248.              the domain of this specification.
  249.    REQ-HDRS  are those presented by an HTTP initiator.  These headers
  250.              should include end-to-end but NOT hop-by-hop headers, and they
  251.              can be canonicalized (aggregation of ``Accept:'' is permitted,
  252.              for example.)
  253.    3.3. DETAIL is used with the TST response message, defined below.  Its
  254.    format is:
  255.       +---------------------+
  256.       |      RESP-HDRS      | : COUNTSTR
  257.       +---------------------+
  258.       |     ENTITY-HDRS     | : COUNTSTR
  259.       +---------------------+
  260.       |     CACHE-HDRS      | : COUNTSTR
  261.       +---------------------+
  262.    3.4. IDENTITY is used with the MON request and SET response message,
  263.    defined below.  Its format is:
  264.       +---------------------+
  265.       |      SPECIFIER      |
  266.       +---------------------+
  267.       |        DETAIL       |
  268.       +---------------------+
  269.    4 - Cache Headers
  270.    HTCP/0.0 CACHE-HDRS are as follows:
  271.    Cache-Vary: <header-name> ...
  272.       The sender of this header has learned that content varies on a set of
  273.       headers different from the set given in the object's Vary: header.
  274.       If Cache-Vary: specifies the null set, then the origin server has
  275.       been found to issue identical results no matter what request headers
  276.       are given to it.
  277.    Expires August 1998                                             [Page 8]
  278.    INTERNET-DRAFT                    HTCP                     February 1998
  279.    Cache-Location: <cache-hostname>:<port> ...
  280.       The sender of this header has learned of one or more proxy caches who
  281.       are holding a copy of this object.  Probing these caches with HTCP
  282.       may result in discovery of new, close-by (preferrable to current)
  283.       HTCP neighbors.
  284.    Cache-Policy: [no-cache] [no-share] [cookie-ok]
  285.       The sender of this header has learned that the object's policy has
  286.       more detail than is given in its response headers.
  287.               ``no-cache'' means that it is uncacheable (no reason given),
  288.                    but may be shareable between simultaneous requestors.
  289.               ``no-share'' means that it is unshareable (no reason given),
  290.                    and per-requestor tunnelling is always required).
  291.               ``cookie-ok'' means that the content is not going to change
  292.                    as a result of different, missing, or even random
  293.                    cookies being included in the request headers, and
  294.                    that caching may be possible.
  295.    Cache-Expiry: <date>
  296.       The sender of this header has learned that this object should be
  297.       considered to have expired at a time different than that indicate by
  298.       its response headers.  The format is the same as HTTP/1.1 Expires:.
  299.    Cache-MD5: <discovered content MD5>
  300.       The sender of this header has computed an MD5 checksum for this
  301.       object which is either different from that given in the object's
  302.       Content-MD5:  header, or is being supplied since the object has no
  303.       Content-MD5 header.  The format is the same as HTTP/1.1 Content-MD5:.
  304.    Cache-to-Origin: <origin>[,<origin>...] <rtt> <samples> <hops>
  305.       The sender of this header has measured the round trip time to a set
  306.       of origin servers (given as a comma separated list of <origin>
  307.       hostnames).  The <rtt> is the average number of seconds, expressed as
  308.       decimal ASCII with arbitrary precision and no exponent.  <Samples> is
  309.       the number of RTT samples which have had input to this average.
  310.       <Hops> is the number of routers between the cache and the origin, or
  311.       0 if the cache doesn't know.
  312.    Expires August 1998                                             [Page 9]
  313.    INTERNET-DRAFT                    HTCP                     February 1998
  314.    6 - Transport Policy Controls
  315.    A set of configuration variables concerning transport characteristics
  316.    should be maintained for each agent which is capable of initiating HTCP
  317.    transactions, perhaps with a set of per-agent global defaults.  These
  318.    variables are:
  319.       Maximum number of unacknowledged transactions before a ``failure'' is
  320.       imputed.
  321.       Maximum interval without a response to some transaction before a
  322.       ``failure'' is imputed.
  323.       Should ICMP-Portunreach be treated as a failure?
  324.       Should RESPONSE=5 && MO=1 be treated as a failure?
  325.       Minimum interval before trying a new transaction after a failure
  326.    Expires August 1998                                            [Page 10]
  327.    INTERNET-DRAFT                    HTCP                     February 1998
  328.    7 - Operations and their Opcodes
  329.    HTCP/0.* opcodes and their respective OP-DATA are defined below:
  330.    7.1. NOP (OPCODE 0):
  331.    This is an HTCP-level ``ping.''  Responders are encouraged to process
  332.    NOP's with minimum delay since the requestor may be using the NOP RTT
  333.    (round trip time) for configuration or mapping purposes.  The RESPONSE
  334.    code for a NOP is always zero (0).  There is no OP-DATA for a NOP.  NOP
  335.    requests with RD=0 cause no processing to occur at all.
  336.    7.2. TST (OPCODE 1):
  337.    Test for the presence of a specified content entity in a proxy cache.
  338.    TST requests with RD=0 cause no processing to occur at all.
  339.    TST requests have the following OP-DATA:
  340.                     +0 (MSB)                            +1 (LSB)
  341.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  342.       0: |                                                               |
  343.          /                          SPECIFIER                            /
  344.          /                                                               /
  345.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  346.    RESPONSE codes for TST are as follows:
  347.           0   entity is present in responder's cache (OP-DATA valid)
  348.           1   entity is not present in responder's cache
  349.    TST responses have the following OP-DATA, if RESPONSE is zero (0):
  350.                     +0 (MSB)                            +1 (LSB)
  351.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  352.       0: |                                                               |
  353.          /                             DETAIL                            /
  354.          /                                                               /
  355.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  356.    DETAIL  is a set of cache, entity, and response headers.  The cache
  357.            headers are described above.  Entity and response headers are
  358.            defined by HTTP.
  359.    Expires August 1998                                            [Page 11]
  360.    INTERNET-DRAFT                    HTCP                     February 1998
  361.    7.3. MON (OPCODE 2):
  362.    Monitor activity in a proxy cache (adds, deletes, replacements, etc).
  363.    Since interleaving of HTCP transaction over a single pair of UDP
  364.    endpoints is not supported, it is recommended that a unique UDP endpoint
  365.    be allocated by the requestor for each concurrent MON request.  MON
  366.    requests with RD=0 are equivilent to those with RD=1 and TIME=0; that
  367.    is, they will cancel any outstanding MON transaction.
  368.    MON requests have the following OP-DATA structure:
  369.                      +0 (MSB)
  370.          +---+---+---+---+---+---+---+---+
  371.       0: |             TIME              |
  372.          +---+---+---+---+---+---+---+---+
  373.    TIME  is the number of seconds of monitoring output desired by the
  374.          initiator.  Subsequent MON requests from the same initiator with
  375.          the same MSG-ID should update the time on a ongoing MON
  376.          transaction.  This is called ``overlapping renew.''
  377.    RESPONSE codes for MON are as follows:
  378.             0   accepted, OP-DATA is present and valid
  379.             1   refused (quota error -- too many MON's are active)
  380.    MON responses have the following OP-DATA structure, if RESPONSE is zero
  381.    (0):
  382.                     +0 (MSB)                            +1 (LSB)
  383.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  384.       0: |             TIME              |     ACTION    |     REASON    |
  385.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  386.       2: |                                                               |
  387.          /                            IDENTITY                           /
  388.          /                                                               /
  389.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  390.    TIME      is the number of seconds remaining for this MON transaction.
  391.    ACTION    is a numeric code indicating a cache population action.  Codes
  392.              are:
  393.    Expires August 1998                                            [Page 12]
  394.    INTERNET-DRAFT                    HTCP                     February 1998
  395.                      0   an entity has been added to the cache
  396.                      1   an entity in the cache has been refreshed
  397.                      2   an entity in the cache has been replaced
  398.                      3   an entity in the cache has been deleted
  399.    REASON    is a numeric code indicating the reason for an ACTION.  Codes
  400.              are:
  401.                 0   some reason not covered by the other REASON codes
  402.                 1   a proxy client fetched this entity
  403.                 2   a proxy client fetched with caching disallowed
  404.                 3   the proxy server prefetched this entity
  405.                 4   the entity expired, per its headers
  406.                 5   the entity was purged due to caching storage limits
  407.    7.4. SET (OPCODE 3):
  408.    Inform a cache of the identity of an object.  This is a ``push''
  409.    transaction, whereby cooperating caches can share information such as
  410.    updated Age/Date/Expires headers (which might result from an origin
  411.    ``304 Not modified'' response) or updated cache headers (which might
  412.    result from the discovery of non-authoritative ``vary'' conditions or
  413.    from learning of second or third party cache locations for this entity.
  414.    RD is honoured.
  415.    SET requests have the following OP-DATA structure:
  416.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  417.       0: |                                                               |
  418.          /                            IDENTITY                           /
  419.          /                                                               /
  420.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  421.    RESPONSE  codes are as follows:
  422.                     0   identity accepted, thank you
  423.                     1   identity ignored, no reason given, thank you
  424.    SET responses have no OP-DATA.
  425.    Expires August 1998                                            [Page 13]
  426.    INTERNET-DRAFT                    HTCP                     February 1998
  427.    7.5. CLR (OPCODE 4):
  428.    Tell a cache to completely forget about an entity.  RD is honoured.
  429.    CLR requests have the following OP-DATA structure:
  430.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  431.       0: |                   RESERVED                    |     REASON    |
  432.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  433.       2: |                                                               |
  434.          /                           SPECIFIER                           /
  435.          /                                                               /
  436.          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  437.    REASON    is a numeric code indicating the reason why the requestor is
  438.              asking that this entity be removed.  The codes are as follows:
  439.              0   some reason not better specified by another code
  440.              1   the origin server told me that this entity does not exist
  441.    RESPONSE  codes are as follows:
  442.                      0   i had it, it's gone now
  443.                      1   i had it, i'm keeping it, no reason given.
  444.                      2   i didn't have it
  445.    CLR responses have no OP-DATA.
  446.    Clearing a URL without specifying response, entity, or cache headers
  447.    means to clear all entities using that URL.
  448.    5 - Security Considerations
  449.    Expires August 1998                                            [Page 14]
  450.    INTERNET-DRAFT                    HTCP                     February 1998
  451.    6 - References
  452.    [RFC2068]
  453.       R. Fielding, J. Gettys, J. Mogul, H. Frystyk, T. Berners-Lee,
  454.       ``Hypertext Transfer Protocol -- HTTP/1.1,'' RFC 2068, UC Irvine,
  455.       DEC, MIT/LCS, January 1997
  456.    [RFC2186]
  457.       D. Wessels, K. Claffy, ``Internet Cache Protocol (ICP), version 2,''
  458.       RFC 2186, National Laboratory for Applied Network Research/UCSD,
  459.       September 1997
  460.    7 - Author's Address
  461.          Paul Vixie
  462.             Vixie Enterprises
  463.             950 Charter Street
  464.             Redwood City, CA 94063
  465.             +1 650 779 7001
  466.             <paul@vix.com>
  467.    Expires August 1998                                            [Page 15]