Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnishevent3
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
varnishevent3
Commits
1f8a74ac
Commit
1f8a74ac
authored
Jan 24, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename zlib.h to vgz.h, take 2
parent
b5f08fdc
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
13 additions
and
13 deletions
+13
-13
cache_esi_deliver.c
bin/varnishd/cache_esi_deliver.c
+1
-1
cache_esi_fetch.c
bin/varnishd/cache_esi_fetch.c
+1
-1
cache_esi_parse.c
bin/varnishd/cache_esi_parse.c
+1
-1
cache_gzip.c
bin/varnishd/cache_gzip.c
+4
-4
vtc_http.c
bin/varnishtest/vtc_http.c
+1
-1
Makefile.am
lib/libvgz/Makefile.am
+1
-1
compress.c
lib/libvgz/compress.c
+1
-1
gzguts.h
lib/libvgz/gzguts.h
+1
-1
uncompr.c
lib/libvgz/uncompr.c
+1
-1
zutil.h
lib/libvgz/zutil.h
+1
-1
No files found.
bin/varnishd/cache_esi_deliver.c
View file @
1f8a74ac
...
...
@@ -40,7 +40,7 @@ SVNID("$Id")
#include "cache_esi.h"
#include "vend.h"
#include "vct.h"
#include "
zlib
.h"
#include "
vgz
.h"
#include "stevedore.h"
/*--------------------------------------------------------------------*/
...
...
bin/varnishd/cache_esi_fetch.c
View file @
1f8a74ac
...
...
@@ -39,7 +39,7 @@ SVNID("$Id")
#include "cache.h"
#include "cache_esi.h"
#include "vct.h"
#include "
zlib
.h"
#include "
vgz
.h"
#include "stevedore.h"
/*---------------------------------------------------------------------
...
...
bin/varnishd/cache_esi_parse.c
View file @
1f8a74ac
...
...
@@ -40,7 +40,7 @@ SVNID("$Id")
#include "cache_esi.h"
#include "vend.h"
#include "vct.h"
#include "
zlib
.h"
#include "
vgz
.h"
#include "stevedore.h"
//#define Debug(fmt, ...) printf(fmt, __VA_ARGS__)
...
...
bin/varnishd/cache_gzip.c
View file @
1f8a74ac
...
...
@@ -27,9 +27,9 @@
*
* Interaction with the linvgz (zlib) library.
*
* The
libz library pollutes namespace a LOT when you include the "zlib
.h"
*
file so we contain the damage by vectoring all access to libz through
* this source file.
* The
zlib library pollutes namespace a LOT when you include the "vgz
.h"
*
(aka (zlib.h") file so we contain the damage by vectoring all access
* t
o libz through t
his source file.
*
* The API defined by this file, will also insulate the rest of the code,
* should we find a better gzip library at a later date.
...
...
@@ -74,7 +74,7 @@ SVNID("$Id$")
#include "cache.h"
#include "stevedore.h"
#include "
zlib
.h"
#include "
vgz
.h"
struct
vgz
{
unsigned
magic
;
...
...
bin/varnishtest/vtc_http.c
View file @
1f8a74ac
...
...
@@ -49,7 +49,7 @@ SVNID("$Id$")
#include "vtc.h"
#include "
zlib
.h"
#include "
vgz
.h"
#define MAX_HDR 50
...
...
lib/libvgz/Makefile.am
View file @
1f8a74ac
...
...
@@ -28,6 +28,6 @@ libvgz_la_SOURCES = \
trees.h
\
uncompr.c
\
zconf.h
\
zlib
.h
\
vgz
.h
\
zutil.c
\
zutil.h
lib/libvgz/compress.c
View file @
1f8a74ac
...
...
@@ -6,7 +6,7 @@
/* @(#) $Id$ */
#define ZLIB_INTERNAL
#include "
zlib
.h"
#include "
vgz
.h"
/* ===========================================================================
Compresses the source buffer into the destination buffer. The level
...
...
lib/libvgz/gzguts.h
View file @
1f8a74ac
...
...
@@ -19,7 +19,7 @@
#endif
#include <stdio.h>
#include "
zlib
.h"
#include "
vgz
.h"
#ifdef STDC
# include <string.h>
# include <stdlib.h>
...
...
lib/libvgz/uncompr.c
View file @
1f8a74ac
...
...
@@ -6,7 +6,7 @@
/* @(#) $Id$ */
#define ZLIB_INTERNAL
#include "
zlib
.h"
#include "
vgz
.h"
/* ===========================================================================
Decompresses the source buffer into the destination buffer. sourceLen is
...
...
lib/libvgz/zutil.h
View file @
1f8a74ac
...
...
@@ -19,7 +19,7 @@
# define ZLIB_INTERNAL
#endif
#include "
zlib
.h"
#include "
vgz
.h"
#ifdef STDC
# if !(defined(_WIN32_WCE) && defined(_MSC_VER))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment