]> err.no Git - varnish/commitdiff
More const polishing
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 25 Sep 2007 07:11:33 +0000 (07:11 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 25 Sep 2007 07:11:33 +0000 (07:11 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2020 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache.h
varnish-cache/bin/varnishd/cache_hash.c
varnish-cache/bin/varnishd/cache_http.c
varnish-cache/bin/varnishd/stevedore.c

index 9c98ec3604d6f306bb8a22d0600876cb5f2bd9fd..c3b21c5d403dc297bda02ab5b7e42cd23262660c 100644 (file)
@@ -437,7 +437,7 @@ int Fetch(struct sess *sp);
 /* cache_hash.c */
 void HSH_Prealloc(const struct sess *sp);
 int HSH_Compare(const struct sess *sp, const struct objhead *o);
-void HSH_Copy(struct sess *sp, const struct objhead *o);
+void HSH_Copy(const struct sess *sp, const struct objhead *o);
 struct object *HSH_Lookup(struct sess *sp);
 void HSH_Unbusy(struct object *o);
 void HSH_Ref(struct object *o);
@@ -465,7 +465,7 @@ int http_GetHdrField(const struct http *hp, const char *hdr, const char *field,
 int http_GetStatus(const struct http *hp);
 const char *http_GetReq(const struct http *hp);
 const char *http_GetProto(const struct http *hp);
-int http_HdrIs(struct http *hp, const char *hdr, const char *val);
+int http_HdrIs(const struct http *hp, const char *hdr, const char *val);
 int http_GetTail(struct http *hp, unsigned len, char **b, char **e);
 int http_Read(struct http *hp, int fd, void *b, unsigned len);
 void http_RecvPrep(struct http *hp);
index 27c179238ba6df287cf0b3fca59cda8a134506d5..5c697787e99e6e178108558d5118e9a2702bc0ad 100644 (file)
@@ -138,7 +138,7 @@ HSH_Compare(const struct sess *sp, const struct objhead *obj)
 }
 
 void
-HSH_Copy(struct sess *sp, const struct objhead *obj)
+HSH_Copy(const struct sess *sp, const struct objhead *obj)
 {
        unsigned u, v;
        char *b;
index 7dbc63e2a76275e55b8eb3d0c89adf2e43b5368d..b009c6d649c585918224a4669f024a3e7beaa149 100644 (file)
@@ -304,7 +304,7 @@ http_DoConnection(struct sess *sp)
 /*--------------------------------------------------------------------*/
 
 int
-http_HdrIs(struct http *hp, const char *hdr, const char *val)
+http_HdrIs(const struct http *hp, const const char *hdr, const char *val)
 {
        char *p;
 
index c54db3b81b14014273c9103a32607877a9aca3c2..132d54cd94278f636bf13208993b63bdd6e97f27 100644 (file)
@@ -92,7 +92,7 @@ STV_free(struct storage *st)
 }
 
 static int
-cmp_storage(const struct stevedore *s, const const char *p, const char *q)
+cmp_storage(const struct stevedore *s, const char *p, const char *q)
 {
        if (strlen(s->name) != q - p)
                return (1);