UltraMonkey-L7 V3(multi-thread implementation)
Revision | 637d9f49d4e1718a6a7cc72905f3f9b7e6ecd044 (tree) |
---|---|
Time | 2011-01-25 11:41:54 |
Author | Michiro Hibari <hibari@user...> |
Commiter | Michiro Hibari |
Update spec file for 3.0.1
@@ -1,4 +1,7 @@ | ||
1 | -[Sep. 06 2010] 3.0.0-0 Norihisa NAKAI, Hiromasa KANDA, LANG XIJIAN | |
1 | +[Jan. 25 2011] 3.0.1-1 HIBARI Michiro | |
2 | + - Fix L7directord RA.(Remove need less option "-b".) | |
3 | + | |
4 | +[Sep. 06 2010] 3.0.0-1 Norihisa NAKAI, Hiromasa KANDA, LANG XIJIAN | |
2 | 5 | - Implemented Multi-threading architecture using Boost::Asio and Boost::Thread library. |
3 | 6 | - Implemented IPv6 protocol logic. |
4 | 7 | - Implemented SorryURI support. |
@@ -9,9 +12,61 @@ | ||
9 | 12 | - Fixed algorithm for parameter. (Using boost algorithm template.) |
10 | 13 | - Implemented SNMPAgent function in l7vsd. |
11 | 14 | |
12 | -/* | |
13 | - FIXME add other changes | |
14 | -*/ | |
15 | +[Jun. 17 2010] 2.1.3-1 | |
16 | + - Fix checkinig content (l7directord) | |
17 | + | |
18 | +[Aug. 24 2009] 2.1.3-0 TATEISHI Katsuyuki | |
19 | + - Translate man files into English. (man) | |
20 | + - Fix purging sorryserver to respect reloaded configuration. (l7directord) | |
21 | + - Fix waiting for customcheck child process. (l7directord) | |
22 | + - Fix binding virtual server socket to INADDR_ANY. (l7vsadm) | |
23 | + - Fix --forwarded-for option in protocol modules. (protomod_*) | |
24 | + - Add --timeout option to protomod_ip. (protomod_ip) | |
25 | + - Corresponded to 1-32 bytes (variable-length) SSL Session IDs. | |
26 | + - Modify spec and initscripts to make them rpmlint free. (ultramonkey-l7.spec) | |
27 | + - Add Heartbeat resource agent scripts and example cib.xml as examples. | |
28 | + (doc/heartbeat-ra) | |
29 | + - Corresponded to gcc 4.3. | |
30 | + - Fix autotools files. | |
31 | + Note: To build this package, follow these steps. | |
32 | + 1 Install automake, autoconf, libtool and other software required by | |
33 | + UltraMonkey-L7. | |
34 | + 2 Checkout from git repository. | |
35 | + % git clone <repository> | |
36 | + 3 Generate configure script, Makefile.in and other files. | |
37 | + % cd ultramonkey-l7-v2 | |
38 | + % autoreconf -if | |
39 | + 4 Build | |
40 | + % ./configure [*] | |
41 | + % make | |
42 | + 5 Install | |
43 | + % make install | |
44 | + | |
45 | + [*] You should specify following options to install as previous releases. | |
46 | + % ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ | |
47 | + --libdir='${prefix}/lib64' | |
48 | + | |
49 | +[May.5 2009] 2.1.2-2-rc Shinya TAKEBAYASHI | |
50 | + - Fixed rc-scripts: make a lockfile | |
51 | + - Fixed SPEC file: l7vsd/l7directord switched to off | |
52 | + - Optimized sequences in sslid module. | |
53 | + | |
54 | +[Apr.20 2009] 2.1.2-1 Shinya TAKEBAYASHI | |
55 | + - Removed cookie modules | |
56 | + | |
57 | +[Mar. 9 2009] 2.1.2-0 Shinya TAKEBAYASHI | |
58 | + - Added protocol modules(recently supported): | |
59 | + * cpassive(Cookie passive) | |
60 | + * crewrite(Cookie rewrite) | |
61 | + * ip(Source IP) | |
62 | + * pfilter(Packet filter) | |
63 | + - Implemented replication spec to sslid module. | |
64 | + | |
65 | +[Jan. 27 2009] 2.1.1-0 Shinya TAKEBAYASHI | |
66 | + - Added option for FAST SCHEDULE to sessionless module. | |
67 | + Establishing connection when clinent connection was established. | |
68 | + - Updated l7directord man file. | |
69 | + - Changed methods for sslid module.(liner list -> hash list) | |
15 | 70 | |
16 | 71 | [Dec. 17 2008] 2.1.0-0 Shinya TAKEBAYASHI |
17 | 72 | - Added option for FAST SCHEDULE to sessionless module |
@@ -1,7 +1,7 @@ | ||
1 | 1 | AC_PREREQ(2.59) |
2 | 2 | AC_INIT(l7vsd) |
3 | 3 | PACKAGENAME=l7vsd |
4 | -VERSION=3.0.0 | |
4 | +VERSION=3.0.1 | |
5 | 5 | |
6 | 6 | AM_INIT_AUTOMAKE($PACKAGENAME, $VERSION, no-define ) |
7 | 7 | AC_CONFIG_SRCDIR([config.h.in]) |