Commit 2e3d4875 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Make req.hash have the right internal type: char *


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1397 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 2b535457
...@@ -26,8 +26,8 @@ const char * VRT_r_req_proto(struct sess *); ...@@ -26,8 +26,8 @@ const char * VRT_r_req_proto(struct sess *);
void VRT_l_req_proto(struct sess *, const char *); void VRT_l_req_proto(struct sess *, const char *);
struct backend * VRT_r_req_backend(struct sess *); struct backend * VRT_r_req_backend(struct sess *);
void VRT_l_req_backend(struct sess *, struct backend *); void VRT_l_req_backend(struct sess *, struct backend *);
int VRT_r_req_hash(struct sess *); const char * VRT_r_req_hash(struct sess *);
void VRT_l_req_hash(struct sess *, int); void VRT_l_req_hash(struct sess *, const char *);
double VRT_r_obj_valid(struct sess *); double VRT_r_obj_valid(struct sess *);
void VRT_l_obj_valid(struct sess *, double); void VRT_l_obj_valid(struct sess *, double);
double VRT_r_obj_cacheable(struct sess *); double VRT_r_obj_cacheable(struct sess *);
......
...@@ -63,7 +63,7 @@ set tt(TIME) "double" ...@@ -63,7 +63,7 @@ set tt(TIME) "double"
set tt(HEADER) "const char *" set tt(HEADER) "const char *"
set tt(HOSTNAME) "const char *" set tt(HOSTNAME) "const char *"
set tt(PORTNAME) "const char *" set tt(PORTNAME) "const char *"
set tt(HASH) "int" set tt(HASH) "const char *"
#---------------------------------------------------------------------- #----------------------------------------------------------------------
# Boilerplate warning for all generated files. # Boilerplate warning for all generated files.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment