]> err.no Git - varnish/commitdiff
Move the WS_ prototypes down where they belong.
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 28 Sep 2007 13:04:53 +0000 (13:04 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 28 Sep 2007 13:04:53 +0000 (13:04 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2053 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache.h

index c06df28e3bb1de731cd745fabc530eeae728595a..eb6c7ba281dcf609e57d4c8f678ecbfc57ee25e9 100644 (file)
@@ -90,14 +90,6 @@ struct ws {
        char                    *r;             /* (R)eserved length */
 };
 
-void WS_Init(struct ws *ws, void *space, unsigned len);
-unsigned WS_Reserve(struct ws *ws, unsigned bytes);
-void WS_Release(struct ws *ws, unsigned bytes);
-void WS_ReleaseP(struct ws *ws, char *ptr);
-void WS_Assert(const struct ws *ws);
-void WS_Reset(struct ws *ws);
-char *WS_Alloc(struct ws *ws, unsigned bytes);
-
 /*--------------------------------------------------------------------
  * HTTP Request/Response/Header handling structure.
  */
@@ -554,6 +546,16 @@ cli_func_t cli_func_config_use;
 cli_func_t     cli_func_dump_pool;
 #endif
 
+/* cache_ws.c */
+
+void WS_Init(struct ws *ws, void *space, unsigned len);
+unsigned WS_Reserve(struct ws *ws, unsigned bytes);
+void WS_Release(struct ws *ws, unsigned bytes);
+void WS_ReleaseP(struct ws *ws, char *ptr);
+void WS_Assert(const struct ws *ws);
+void WS_Reset(struct ws *ws);
+char *WS_Alloc(struct ws *ws, unsigned bytes);
+
 /* rfc2616.c */
 int RFC2616_cache_policy(const struct sess *sp, const struct http *hp);