brian 96/12/21 19:47:16
Modified: src mod_negotiation.c
Log:
Reviewed by: Randy Terbush, Brian Behlendorf
Submitted by: Paul Sutton
Change name of #define to make it clear this complies with draft 02 of Koen's
conneg proposal.
Revision Changes Path
1.28 +3 -3 apache/src/mod_negotiation.c
Index: mod_negotiation.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_negotiation.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -C3 -r1.27 -r1.28
*** mod_negotiation.c 1996/12/09 04:37:03 1.27
--- mod_negotiation.c 1996/12/22 03:47:14 1.28
***************
*** 63,76 ****
#include "http_core.h"
#include "http_log.h"
! /* define HOLTMAN to allow for Holtman I-D transparent negotiation.
* This file currently implements the draft-02, except for
* anything to do with features and cache-control (max-age etc)
*
* Since the draft is just that, and we don't yet implement
* everything, regard the transparent negotiation stuff as experimental.
*/
! /*#define HOLTMAN*/
/* Commands --- configuring document caching on a per (virtual?)
* server basis...
--- 63,76 ----
#include "http_core.h"
#include "http_log.h"
! /* define TCN_02 to allow for Holtman I-D transparent negotiation.
* This file currently implements the draft-02, except for
* anything to do with features and cache-control (max-age etc)
*
* Since the draft is just that, and we don't yet implement
* everything, regard the transparent negotiation stuff as experimental.
*/
! /*#define TCN_02*/
/* Commands --- configuring document caching on a per (virtual?)
* server basis...
***************
*** 455,461 ****
do_header_line (r->pool, table_get (hdrs, "Accept-charset"));
new->avail_vars = make_array (r->pool, 40, sizeof (var_rec));
! #ifdef HOLTMAN
if (table_get(r->headers_in, "Negotiate")) {
/* Negotiate: header tells us UA does transparent negotiation
* We have to decide whether we want to ... for now, yes,
--- 455,461 ----
do_header_line (r->pool, table_get (hdrs, "Accept-charset"));
new->avail_vars = make_array (r->pool, 40, sizeof (var_rec));
! #ifdef TCN_02
if (table_get(r->headers_in, "Negotiate")) {
/* Negotiate: header tells us UA does transparent negotiation
* We have to decide whether we want to ... for now, yes,