Codebase list squidview / eb9f731
Merge tag 'upstream/0.84' Upstream version 0.84 Willi Mann 7 years ago
4 changed file(s) with 9 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 >> Squidview history:
1
2 0.84 December 2016
3 - INM result code as 'U' - unmodified
4 thanks Yuri Voinov
15
26 0.82-0.83: May 2016
37 - add more squid result codes
26612661 # Define the identity of the package.
26622662
26632663 PACKAGE=squidview
2664 VERSION=0.83
2664 VERSION=0.84
26652665
26662666
26672667 cat >>confdefs.h <<_ACEOF
1414
1515 AC_INIT(squidview.cpp)
1616 AM_CONFIG_HEADER(config.h)
17 AM_INIT_AUTOMAKE(squidview,0.83)
17 AM_INIT_AUTOMAKE(squidview,0.84)
1818 AC_PROG_CXX
1919 AC_PROG_INSTALL
2020
1616
1717 A program to nicely browse your squid log
1818
19 (c) 2001 - 2015 Graeme Sheppard
19 (c) 2001 - 2016 Graeme Sheppard
2020
2121 This program is not how it would be if I had to rewrite it from scratch.
2222 It started off very simple (quick and nasty) and needed to be fast because
13531353 if (sLeft == "TCP_MEM_HIT") cHit = 'M'; else
13541354 if (sLeft == "TCP_HIT_ABORTED") cHit = 'A'; else
13551355 if (sLeft == "TCP_REFRESH_FAIL_OLD") cHit = 'F'; else
1356 if (sLeft == "TCP_INM_HIT") cHit = 'U'; else
13561357
13571358 if (sLeft == "TCP_MISS") cHit = ' '; else
13581359 if (sLeft == "TCP_REFRESH_MISS") cHit = 'm'; else
53195320 void Help()
53205321 {
53215322 MyCls();
5322 con << PACKAGE << " " << VERSION << ": (c) " << "2001-2015"
5323 con << PACKAGE << " " << VERSION << ": (c) " << "2001-2016"
53235324 << " Graeme Sheppard - GPL software\n"
53245325 << "www.rillion.net/squidview\n\n" <<
53255326 "Keystrokes:-\n\n"