]> err.no Git - varnish/commitdiff
Remove http_IsBodyless, it is no longer used.
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sun, 24 Jun 2007 09:23:38 +0000 (09:23 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sun, 24 Jun 2007 09:23:38 +0000 (09:23 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1534 d4fa192b-c00b-0410-8231-f00ffab90ce4

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

index 40422308ae503443146f8eebb1dbe81a4884446f..d91635749809405182d38df3dade4c77e0061d74 100644 (file)
@@ -405,7 +405,6 @@ void http_Setup(struct http *ht, void *space, unsigned len);
 int http_GetHdr(struct http *hp, const char *hdr, char **ptr);
 int http_GetHdrField(struct http *hp, const char *hdr, const char *field, char **ptr);
 int http_GetStatus(struct http *hp);
-int http_IsBodyless(struct http *hp);
 int http_HdrIs(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);
index 85f25f00ad4508b0162f19f39d49efb69b5c074e..61c467e37ace10ee730ffe44d3878155a18733b2 100644 (file)
@@ -383,21 +383,6 @@ http_GetStatus(struct http *hp)
            NULL /* XXX */, 10));
 }
 
-/*---------------------------------------------------------------------
- * All 1xx (informational), 204 (no content), and 304 (not modified)
- * responses MUST NOT include a message-body.
- */
-
-int
-http_IsBodyless(struct http *hp)
-{
-       int status;
-
-       status = http_GetStatus(hp);
-       return (status >= 100 && status < 200)
-               || status == 204 || status == 304;
-}
-
 /*--------------------------------------------------------------------
  * Dissect the headers of the HTTP protocol message.
  * Detect conditionals (headers which start with '^[Ii][Ff]-')