summaryrefslogtreecommitdiff
blob: 4c5bb25b1f4b51e0bd70e620f7af93931b2fe851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
diff -Naur varnish-2.1.4.orig/bin/varnishncsa/varnishncsa.c varnish-2.1.4/bin/varnishncsa/varnishncsa.c
--- varnish-2.1.4.orig/bin/varnishncsa/varnishncsa.c	2010-10-21 17:45:41.000000000 +0200
+++ varnish-2.1.4/bin/varnishncsa/varnishncsa.c	2010-10-21 22:42:50.000000000 +0200
@@ -102,6 +102,7 @@
 
 static size_t nll;
 static int prefer_x_forwarded_for = 0;
+static int virtual_host_style_logging = 0;
 
 static int
 isprefix(const char *str, const char *prefix, const char *end,
@@ -469,6 +470,11 @@
 
 	fo = priv;
 
+	/* the -v option */
+	if (virtual_host_style_logging) {
+		fprintf(fo, "%s ", lp->df_Host);
+	}
+
 	/* %h */
 	if (!lp->df_h && spec & VSL_S_BACKEND)
 		fprintf(fo, "127.0.0.1 ");
@@ -508,7 +514,7 @@
 	 * normalized the request URL.
 	 */
 	fprintf(fo, "\"%s ", lp->df_m);
-	if (lp->df_Host) {
+	if (!virtual_host_style_logging && lp->df_Host) {
 		if (strncmp(lp->df_Host, "http://", 7) != 0)
 			fprintf(fo, "http://");
 		fprintf(fo, "%s", lp->df_Host);
@@ -568,7 +574,7 @@
 {
 
 	fprintf(stderr,
-	    "usage: varnishncsa %s [-aDV] [-n varnish_name] "
+	    "usage: varnishncsa %s [-avDV] [-n varnish_name] "
 	    "[-P file] [-w file]\n", VSL_USAGE);
 	exit(1);
 }
@@ -587,11 +593,14 @@
 
 	vd = VSL_New();
 
-	while ((c = getopt(argc, argv, VSL_ARGS "aDn:P:Vw:f")) != -1) {
+	while ((c = getopt(argc, argv, VSL_ARGS "avDn:P:Vw:f")) != -1) {
 		switch (c) {
 		case 'a':
 			a_flag = 1;
 			break;
+		case 'v':
+			virtual_host_style_logging = 1;
+			break;
 		case 'f':
 			prefer_x_forwarded_for = 1;
 			break;