aboutsummaryrefslogtreecommitdiff
path: root/www/srg/files
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2004-06-29 10:30:46 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2004-06-29 10:30:46 +0000
commitdb443b2e67c7a5600ecf9588c0e1edf1858a3285 (patch)
tree940bbb6e641e1cc595e6c7d8db9de8ab654ee8c4 /www/srg/files
parent75b7c497b6c76e26aff9bd196c17c0e92a004794 (diff)
downloadports-db443b2e67c7a5600ecf9588c0e1edf1858a3285.tar.gz
ports-db443b2e67c7a5600ecf9588c0e1edf1858a3285.zip
Add Squid Report Generator.
Main features are: * PHP Output with built in authentication hooks * Fast Processing * Reporting right down the the location vistied Submitted by: Dmitry Semkin <lslarry@gmail.ru>
Notes
Notes: svn path=/head/; revision=112538
Diffstat (limited to 'www/srg/files')
-rw-r--r--www/srg/files/patch-resolver-test-cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/www/srg/files/patch-resolver-test-cpp b/www/srg/files/patch-resolver-test-cpp
new file mode 100644
index 000000000000..13adeeb83f24
--- /dev/null
+++ b/www/srg/files/patch-resolver-test-cpp
@@ -0,0 +1,22 @@
+--- resolver-test.cpp.orig Mon Jun 28 21:06:59 2004
++++ resolver-test.cpp Mon Jun 28 21:08:30 2004
+@@ -32,16 +32,16 @@
+ }
+
+ /* Use Root Servers because they are unlikey to change IP */
+- i.s_addr = dottedquad(128,9,0,107);
++ i.s_addr = dottedquad(192,228,79,201);
+ t = r.get_name(i);
+ if (t) {
+ if (strcasecmp(t, "b.root-servers.net")!=0) {
+- fprintf(stderr, "FAILED: 128.9.0.107 resolves to %s"
++ fprintf(stderr, "FAILED: 192.228.79.201 resolves to %s"
+ " expected b.root-servers.net please check "
+ "your resolver!\n", t);
+ }
+ } else {
+- fprintf(stderr, "FAILED: Unable to resolve 128.9.0.107\n");
++ fprintf(stderr, "FAILED: Unable to resolve 192.228.79.201\n");
+ }
+
+ i.s_addr = dottedquad(192,203,230,10);