]> err.no Git - varnish/commitdiff
Remove http_GetProto(), it's unused.
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sat, 20 Dec 2008 23:27:00 +0000 (23:27 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sat, 20 Dec 2008 23:27:00 +0000 (23:27 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3475 d4fa192b-c00b-0410-8231-f00ffab90ce4

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

index aeee3d55b2f62ad42930ce70ef5f460a4fb5969c..81431475f94f7d98fe344ff1e464174408291953 100644 (file)
@@ -476,7 +476,6 @@ int http_GetHdrField(const struct http *hp, const char *hdr,
     const char *field, char **ptr);
 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(const struct http *hp, const char *hdr, const char *val);
 int http_DissectRequest(struct sess *sp);
 int http_DissectResponse(struct worker *w, const struct http_conn *htc,
index 868b656d6ea63a9a7b34f02457a4abc67fcff6b3..fbafdbdb4a3ff75a1196bb8975e065429f7af9a4 100644 (file)
@@ -302,14 +302,6 @@ http_GetStatus(const struct http *hp)
        return (hp->status);
 }
 
-const char *
-http_GetProto(const struct http *hp)
-{
-
-       Tcheck(hp->hd[HTTP_HDR_PROTO]);
-       return (hp->hd[HTTP_HDR_PROTO].b);
-}
-
 const char *
 http_GetReq(const struct http *hp)
 {