OSDN Git Service

ultramonkey-l7/ultramonkey-l7-v3.git
11 years agoChange version "3.0.4-rc1" to "3.0.4-1". v3.0.4
Hiroaki Nakano [Fri, 10 Aug 2012 04:24:14 +0000 (13:24 +0900)]
Change version "3.0.4-rc1" to "3.0.4-1".

Signed-off-by: Takeda Kenji <takeda.kenji@nttcom.co.jp>
11 years agoChange for "v3.0.4-rc1" building.
Hiroaki Nakano [Tue, 31 Jul 2012 07:33:47 +0000 (16:33 +0900)]
Change for "v3.0.4-rc1" building.

Signed-off-by: Hiroaki Nakano <nakano.hiroaki@nttcom.co.jp>
11 years agoticket 29150 socket cancel パッチ
Hiroaki Nakano [Tue, 31 Jul 2012 04:58:41 +0000 (13:58 +0900)]
ticket 29150 socket cancel パッチ

boostのドキュメント見ると、closeでもasync系のイベントはキャンセルされると
ありますが、asyncのキャンセル用に"my_socket->cancel "という関数が
用意されているので、cancelしてからcloseした方がグレースフルかなぁ
ということで追加しました。

Signed-off-by: Hiroaki Nakano <nakano.hiroaki@nttcom.co.jp>
11 years agoticket 29127, 29128 l7directordのモジュール名チェックを外す
Hiroaki Nakano [Tue, 31 Jul 2012 04:37:34 +0000 (13:37 +0900)]
ticket 29127, 29128 l7directordのモジュール名チェックを外す

29127 l7directordのモジュール名チェックを外す
29128 サービス監視に失敗したときは、ポート監視に移行してしまう

Signed-off-by: Hiroaki Nakano <nakano.hiroaki@nttcom.co.jp>
11 years agoMerge branch 'ssl_fix_by_CW' into v3.0.4-devel
Hiroaki Nakano [Tue, 31 Jul 2012 02:40:39 +0000 (11:40 +0900)]
Merge branch 'ssl_fix_by_CW' into v3.0.4-devel

11 years agoMerge branch '8958a7d1e41488a10235b884090af8d26bf825ab' into v3.0.4-devel
Hiroaki Nakano [Tue, 31 Jul 2012 02:32:08 +0000 (11:32 +0900)]
Merge branch '8958a7d1e41488a10235b884090af8d26bf825ab' into v3.0.4-devel

11 years agoMerge branch '1a0320df21c18f7fe764c9e2c0e59f4810e26073' into v3.0.4-devel
Hiroaki Nakano [Tue, 31 Jul 2012 02:31:30 +0000 (11:31 +0900)]
Merge branch '1a0320df21c18f7fe764c9e2c0e59f4810e26073' into v3.0.4-devel

11 years agoMerge branch '19ec24e8bcb55273a09c8f36c10807ec6670e278' into v3.0.4-devel
Hiroaki Nakano [Tue, 31 Jul 2012 02:30:58 +0000 (11:30 +0900)]
Merge branch '19ec24e8bcb55273a09c8f36c10807ec6670e278' into v3.0.4-devel

11 years agoMerge branch 'sorryflag_on_segv_fix' of git.sourceforge.jp:/gitroot/ultramonkey-l7...
Hiroaki Nakano [Tue, 31 Jul 2012 02:24:27 +0000 (11:24 +0900)]
Merge branch 'sorryflag_on_segv_fix' of git.sourceforge.jp:/gitroot/ultramonkey-l7/ultramonkey-l7-v3 into v3.0.4-devel

11 years agoticket 29147 mutex.unlockコーディングエラーfix
Hiroaki Nakano [Mon, 30 Jul 2012 08:22:10 +0000 (17:22 +0900)]
ticket 29147 mutex.unlockコーディングエラーfix

down_thread_realserver_handle_async_read_some関数内で、
パケット受信エラー時にrealserver_socket_mutexをロックする処理を
行っているが、これは2重ロックとなってしまっている。
ここは本来、realserver_socket_mutexのロックを解除するべき処理を行う。

* @@ -3724,8 +3724,8 @@ void tcp_session::up_thread_realserver_h で、
空白が挿入。
→これは、元ファイルにtabインデントが残っていたため。空白で置き換える。

Signed-off-by: Hiroaki Nakano <nakano.hiroaki@nttcom.co.jp>
11 years agoticket 29144 SSL clear_socketエラー対処
Hiroaki Nakano [Mon, 30 Jul 2012 07:10:57 +0000 (16:10 +0900)]
ticket 29144 SSL clear_socketエラー対処

クライアント数12000のTPCWによるhttps通信負荷を30分かける試験をすると、
50回に1回の割合でcoreを吐く。

対処として、sslのときsocket.clear_socket()をio_serviceの
workerスレッドに登録して処理するようにし、それによって
clear_socket()の処理をシリアライズ化する。

Signed-off-by: Hiroaki Nakano <nakano.hiroaki@nttcom.co.jp>
11 years agoticket 29143 SSLハンドシェイクエラー対処
Hiroaki Nakano [Mon, 30 Jul 2012 07:06:55 +0000 (16:06 +0900)]
ticket 29143 SSLハンドシェイクエラー対処

クライアント数12000のTPCWによるhttps通信負荷を30分かける試験をすると,
30回に1回の割合でcoreを吐くか、SSLハンドシェイクエラーとなって
以降の通信が出来なくなる。

対処として、非同期なSSLのhandshake処理を実行している時、
read_some(), write_some()が実行されないようにする。

Signed-off-by: Hiroaki Nakano <nakano.hiroaki@nttcom.co.jp>
11 years agoticket 29142 リアルサーバ切り離し時クラッシュ対処
Hiroaki Nakano [Mon, 30 Jul 2012 06:55:41 +0000 (15:55 +0900)]
ticket 29142 リアルサーバ切り離し時クラッシュ対処

SSL+sessionless+リアルサーバ切り離しで、まれに以下の現象が出る。
- l7vsdがクラッシュ(コアダンプ)する
- l7vsdプロセスのCPU使用率が100%に張り付く

原因は、非同期処理の待ち合わせを行うactive_sessions.do_all()を
l7vsadm -d実行時の通信スレッド停止・再開でも流用していたため。
そのために、非同期で待ち合わせていたスレッドが、l7vsadm -dで
再開させられていた。

対処として、active_sessions.do_all()を廃止し、l7vsadm -d時は
各スレッドに終了処理に入るようメッセージを飛ばす方式とした。
また、新規接続処理に、l7vsadmコマンドの待ち合わせ処理を追加。

12 years agoチケット #27223 の修正
Michiro HIBARI [Mon, 23 Jan 2012 09:52:11 +0000 (18:52 +0900)]
チケット #27223 の修正
http://sourceforge.jp/ticket/browse.php?group_id=1951&tid=27223

12 years agoチケット #27216 の修正
Michiro HIBARI [Mon, 23 Jan 2012 09:46:21 +0000 (18:46 +0900)]
チケット #27216 の修正
http://sourceforge.jp/ticket/browse.php?group_id=1951&tid=27216

12 years agoDelete needless file.
Michiro HIBARI [Tue, 27 Dec 2011 07:28:24 +0000 (16:28 +0900)]
Delete needless file.

12 years agoastyle -A8 -HUpc -k3 -z2 -r ./*.cpp ./*.c ./*.h
Michiro Hibari [Tue, 27 Dec 2011 05:17:47 +0000 (14:17 +0900)]
astyle -A8 -HUpc -k3 -z2 -r ./*.cpp ./*.c ./*.h

12 years agoRename
Michiro HIBARI [Tue, 27 Dec 2011 05:14:51 +0000 (14:14 +0900)]
Rename
  ASEND=>ASYNC_SEND
  ARECEIVE=>ASYNC_RECEIVE
Delete
 UP_FUNC_CLIENT_ARECEIVE_HANDLE_EVENT
 UP_FUNC_REALSERVER_ASEND_HANDLE_EVENT
 UP_FUNC_SORRYSERVER_ASEND_HANDLE_EVENT
 DOWN_FUNC_CLIENT_ASEND_HANDLE_EVENT
 DOWN_FUNC_REALSERVER_ARECEIVE_HANDLE_EVENT
 DOWN_FUNC_SORRYSERVER_ARECEIVE_HANDLE_EVENT

12 years agoDelete needless files.
Michiro HIBARI [Tue, 27 Dec 2011 01:40:07 +0000 (10:40 +0900)]
Delete needless files.

12 years agoGet ready for v3.0.3 release. v3.0.3
Michiro HIBARI [Tue, 20 Dec 2011 01:00:31 +0000 (10:00 +0900)]
Get ready for v3.0.3 release.

12 years agov3.0.2 packet break bug fix.
hibari [Sat, 17 Dec 2011 14:10:52 +0000 (23:10 +0900)]
v3.0.2 packet break bug fix.

12 years ago変な改行コード(?)"^M"を削除。 v3.0.2
Michiro HIBARI [Wed, 7 Dec 2011 06:54:44 +0000 (15:54 +0900)]
変な改行コード(?)"^M"を削除。

12 years agoMerge commit 'origin/license-fix'
hibari [Sat, 26 Nov 2011 18:05:16 +0000 (03:05 +0900)]
Merge commit 'origin/license-fix'

12 years ago文字コードがS-JISになっていたため、UTF-8に変更。
hibari [Sat, 26 Nov 2011 17:56:05 +0000 (02:56 +0900)]
文字コードがS-JISになっていたため、UTF-8に変更。

12 years agoformatted all files with 'astyle -A8 -HUpc -k3 -z2 -r ./*.cpp ./*.c ./*.h'.
hibari [Sat, 26 Nov 2011 17:49:53 +0000 (02:49 +0900)]
formatted all files with 'astyle -A8 -HUpc -k3 -z2 -r ./*.cpp ./*.c ./*.h'.

12 years agoresolv conflict
Michiro HIBARI [Mon, 17 Oct 2011 11:06:14 +0000 (20:06 +0900)]
resolv conflict

12 years agoFixed license version number in SPEC file.
Shinya TAKEBAYASHI [Mon, 17 Oct 2011 10:56:06 +0000 (19:56 +0900)]
Fixed license version number in SPEC file.

12 years agorev11261で修正した内容をマージ
6638678 [Mon, 17 Oct 2011 09:46:53 +0000 (09:46 +0000)]
rev11261で修正した内容をマージ

git-svn-id: http://10.144.169.20/repos/um/trunk/ultramonkey-l7-v3@11264 1ed66053-1c2d-0410-8867-f7571e6e31d3

12 years agorev11211の内容をバックポート
6638678 [Fri, 7 Oct 2011 06:24:32 +0000 (06:24 +0000)]
rev11211の内容をバックポート

git-svn-id: http://10.144.169.20/repos/um/trunk/ultramonkey-l7-v3@11213 1ed66053-1c2d-0410-8867-f7571e6e31d3

12 years agosslを利用している場合で、nic故障時にl7directordが止まらなくなる問題を修正した、branches/l7vsd-3.xをバックポート
6638678 [Thu, 6 Oct 2011 05:05:45 +0000 (05:05 +0000)]
sslを利用している場合で、nic故障時にl7directordが止まらなくなる問題を修正した、branches/l7vsd-3.xをバックポート

git-svn-id: http://10.144.169.20/repos/um/trunk/ultramonkey-l7-v3@11190 1ed66053-1c2d-0410-8867-f7571e6e31d3

12 years ago下記修正内容をbranchから反映
6638678 [Tue, 26 Jul 2011 02:52:05 +0000 (02:52 +0000)]
下記修正内容をbranchから反映
ssl_clear_keep_cache() の宣言を消し忘れていたためコンパイルに失敗する問題を修正。

git-svn-id: http://10.144.169.20/repos/um/trunk/ultramonkey-l7-v3@10717 1ed66053-1c2d-0410-8867-f7571e6e31d3

12 years agotrunk整理
6638678 [Mon, 25 Jul 2011 07:17:55 +0000 (07:17 +0000)]
trunk整理

git-svn-id: http://10.144.169.20/repos/um/trunk/ultramonkey-l7-v3@10647 1ed66053-1c2d-0410-8867-f7571e6e31d3

12 years agotrunkを整理
6638678 [Mon, 25 Jul 2011 04:49:42 +0000 (04:49 +0000)]
trunkを整理

git-svn-id: http://10.144.169.20/repos/um/trunk/ultramonkey-l7-v3@10629 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoRPMスペックファイルの Release の最後に %{?dist} を追加。 v3.0.1
Michiro Hibari [Tue, 25 Jan 2011 09:59:36 +0000 (18:59 +0900)]
RPMスペックファイルの Release の最後に %{?dist} を追加。

13 years agoMerge branch 'master' of ssh://hibari@git.sourceforge.jp/gitroot/ultramonkey-l7/ultra...
Michiro Hibari [Tue, 25 Jan 2011 02:54:06 +0000 (11:54 +0900)]
Merge branch 'master' of ssh://hibari@git.sourceforge.jp/gitroot/ultramonkey-l7/ultramonkey-l7-v3

13 years agoUpdate CHANGES and configure.in for 3.0.1
Michiro Hibari [Tue, 25 Jan 2011 02:41:54 +0000 (11:41 +0900)]
Update CHANGES and configure.in for 3.0.1

13 years agoUpdate spec file for 3.0.1
Michiro Hibari [Tue, 25 Jan 2011 02:41:54 +0000 (11:41 +0900)]
Update spec file for 3.0.1

13 years agoUpdate spec file for 3.0.1
Michiro Hibari [Mon, 24 Jan 2011 09:04:25 +0000 (18:04 +0900)]
Update spec file for 3.0.1

13 years agobug fix. Remove need less option "-b".
Michiro Hibari [Tue, 18 Jan 2011 02:25:49 +0000 (11:25 +0900)]
bug fix. Remove need less option "-b".
pgrep -fox "/usr/sbin/l7vsd -b => pgrep -fox "/usr/sbin/l7vsd

13 years agoChange char code ( S-JIS => UTF-8). v3.0.0
Michiro Hibari [Fri, 14 Jan 2011 05:51:31 +0000 (14:51 +0900)]
Change char code ( S-JIS => UTF-8).

13 years agoMerge branch 'master' into local
Michiro Hibari [Fri, 7 Jan 2011 01:23:29 +0000 (10:23 +0900)]
Merge branch 'master' into local

13 years agoClean up.
Michiro Hibari [Fri, 7 Jan 2011 01:22:15 +0000 (10:22 +0900)]
Clean up.

13 years agoDelete test directory.
Michiro Hibari [Fri, 7 Jan 2011 01:18:50 +0000 (10:18 +0900)]
Delete test directory.

13 years agoBug fix. (Line 162: /usr/sbin/l7vsd -b => /usr/sbin/l7vsd)
6638678 [Wed, 1 Dec 2010 07:15:27 +0000 (07:15 +0000)]
Bug fix. (Line 162: /usr/sbin/l7vsd -b => /usr/sbin/l7vsd)

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10448 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoFix: SSL bad record mac error.
0809216 [Wed, 17 Nov 2010 05:58:36 +0000 (05:58 +0000)]
Fix: SSL bad record mac error.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10445 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoFix: SSL bad record mac error.
0809216 [Wed, 17 Nov 2010 04:13:20 +0000 (04:13 +0000)]
Fix: SSL bad record mac error.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10444 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix.
6638678 [Fri, 12 Nov 2010 03:50:07 +0000 (03:50 +0000)]
bug fix.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10441 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agocib.xml-sample: change start_delay, on_fail parameter
6638678 [Fri, 12 Nov 2010 02:53:42 +0000 (02:53 +0000)]
cib.xml-sample: change start_delay, on_fail parameter

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10440 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix.
6638678 [Fri, 12 Nov 2010 01:56:47 +0000 (01:56 +0000)]
bug fix.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10439 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix.
6638678 [Fri, 12 Nov 2010 01:55:45 +0000 (01:55 +0000)]
bug fix.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10438 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoupdate RA.
6638678 [Fri, 12 Nov 2010 01:31:37 +0000 (01:31 +0000)]
update RA.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10437 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoadd test scripts.
6638678 [Thu, 11 Nov 2010 04:52:40 +0000 (04:52 +0000)]
add test scripts.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10436 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoForgot to commit tcp_session.h
0809216 [Tue, 9 Nov 2010 11:40:27 +0000 (11:40 +0000)]
Forgot to commit tcp_session.h

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10432 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoEdge Trigger OK!
0809216 [Tue, 9 Nov 2010 11:39:58 +0000 (11:39 +0000)]
Edge Trigger OK!

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10431 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoLevel Trigger Only
0809216 [Tue, 9 Nov 2010 09:55:16 +0000 (09:55 +0000)]
Level Trigger Only

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10430 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agochanged notify call
0809216 [Tue, 9 Nov 2010 09:03:30 +0000 (09:03 +0000)]
changed notify call

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10429 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoHigh Speed Version!
0809216 [Tue, 9 Nov 2010 08:41:14 +0000 (08:41 +0000)]
High Speed Version!

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10428 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix.
6638678 [Tue, 9 Nov 2010 02:51:04 +0000 (02:51 +0000)]
bug fix.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10427 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agochange tcp_session
0809216 [Mon, 8 Nov 2010 12:25:41 +0000 (12:25 +0000)]
change tcp_session

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10426 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoRevert virtualservice_tcp, tcp_session
0809216 [Mon, 8 Nov 2010 12:17:40 +0000 (12:17 +0000)]
Revert virtualservice_tcp, tcp_session

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10425 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agol7directord copyright
0809216 [Mon, 8 Nov 2010 12:13:55 +0000 (12:13 +0000)]
l7directord copyright

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10424 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoUnity Copyright write.
6638678 [Mon, 8 Nov 2010 09:23:24 +0000 (09:23 +0000)]
Unity Copyright write.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10422 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agodelete needless files.
6638678 [Mon, 8 Nov 2010 09:03:27 +0000 (09:03 +0000)]
delete needless files.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10421 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix.
6638678 [Mon, 8 Nov 2010 08:51:18 +0000 (08:51 +0000)]
bug fix.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10420 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix
6638678 [Thu, 4 Nov 2010 05:17:29 +0000 (05:17 +0000)]
bug fix

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10418 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix
6638678 [Tue, 2 Nov 2010 08:55:39 +0000 (08:55 +0000)]
bug fix

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10416 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoRevert revision 10411
0809216 [Fri, 29 Oct 2010 09:00:49 +0000 (09:00 +0000)]
Revert revision 10411

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10412 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoFixed? l7vsadm -C core dump
0809216 [Fri, 29 Oct 2010 08:18:52 +0000 (08:18 +0000)]
Fixed? l7vsadm -C core dump

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10411 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoMerged DHC codes
0809216 [Fri, 29 Oct 2010 08:15:50 +0000 (08:15 +0000)]
Merged DHC codes

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10410 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix. Can not get statistic when option -c only.
0809216 [Mon, 25 Oct 2010 10:59:16 +0000 (10:59 +0000)]
bug fix. Can not get statistic when option -c only.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10408 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix
6638678 [Fri, 22 Oct 2010 09:09:10 +0000 (09:09 +0000)]
bug fix

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10406 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix
6638678 [Fri, 22 Oct 2010 03:42:52 +0000 (03:42 +0000)]
bug fix

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10404 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix
6638678 [Fri, 22 Oct 2010 01:33:34 +0000 (01:33 +0000)]
bug fix

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10403 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agobug fix
6638678 [Fri, 22 Oct 2010 01:24:10 +0000 (01:24 +0000)]
bug fix

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10402 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoAdd DHC Test scripts
6638678 [Fri, 22 Oct 2010 01:23:16 +0000 (01:23 +0000)]
Add DHC Test scripts

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10401 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoBug fix
6638678 [Thu, 21 Oct 2010 12:26:19 +0000 (12:26 +0000)]
Bug fix

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10399 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agomaged dhc codes.
6638678 [Thu, 21 Oct 2010 10:29:18 +0000 (10:29 +0000)]
maged dhc codes.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10396 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoAdd PT test scripts.
6638678 [Wed, 20 Oct 2010 09:01:17 +0000 (09:01 +0000)]
Add PT test scripts.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10392 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoAdd PT test scrpts.
6638678 [Tue, 19 Oct 2010 12:08:45 +0000 (12:08 +0000)]
Add PT test scrpts.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10390 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoFix lock
0809216 [Tue, 19 Oct 2010 09:47:42 +0000 (09:47 +0000)]
Fix lock

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10389 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoDelete waste files.
6638678 [Tue, 19 Oct 2010 06:19:01 +0000 (06:19 +0000)]
Delete waste files.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10388 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoAdd PT test scripts.
6638678 [Tue, 19 Oct 2010 06:16:56 +0000 (06:16 +0000)]
Add PT test scripts.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10387 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoMarged dhc code ver 20101018ver
6638678 [Mon, 18 Oct 2010 06:41:53 +0000 (06:41 +0000)]
Marged dhc code ver 20101018ver

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10385 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoadd test scripts
6638678 [Fri, 15 Oct 2010 09:07:44 +0000 (09:07 +0000)]
add test scripts

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10382 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoマージしたコードに対応
6638678 [Fri, 15 Oct 2010 09:05:45 +0000 (09:05 +0000)]
マージしたコードに対応

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10381 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years ago#536 Fixed
0809216 [Fri, 15 Oct 2010 08:28:10 +0000 (08:28 +0000)]
#536 Fixed

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10380 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years ago#539 Fixed
0809216 [Fri, 15 Oct 2010 08:15:04 +0000 (08:15 +0000)]
#539 Fixed

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10379 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoAdd sslid test script.
0809216 [Thu, 14 Oct 2010 12:45:26 +0000 (12:45 +0000)]
Add sslid test script.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10377 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoAdd scripts.
0809216 [Thu, 14 Oct 2010 11:37:53 +0000 (11:37 +0000)]
Add scripts.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10375 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoadd test script
6638678 [Thu, 14 Oct 2010 11:30:51 +0000 (11:30 +0000)]
add test script

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10374 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoadd test scripts
6638678 [Thu, 14 Oct 2010 08:58:50 +0000 (08:58 +0000)]
add test scripts

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10372 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoadd test scripts
6638678 [Thu, 14 Oct 2010 08:12:01 +0000 (08:12 +0000)]
add test scripts

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10371 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agopropset svn:executable
0809216 [Thu, 14 Oct 2010 02:24:05 +0000 (02:24 +0000)]
propset svn:executable

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10370 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoMerge DHC code.
0809216 [Thu, 14 Oct 2010 02:09:06 +0000 (02:09 +0000)]
Merge DHC code.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10369 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoDelete trash
0809216 [Thu, 14 Oct 2010 01:35:29 +0000 (01:35 +0000)]
Delete trash

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10368 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoFixed configtest script
0809216 [Wed, 13 Oct 2010 08:51:56 +0000 (08:51 +0000)]
Fixed configtest script

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10366 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years ago#534 Fixed: Delete short option / Modified all related script...
0809216 [Wed, 13 Oct 2010 07:54:26 +0000 (07:54 +0000)]
#534 Fixed: Delete short option / Modified all related script...

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10365 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years agoFix: ip, sessionless module test
0809216 [Wed, 13 Oct 2010 06:12:48 +0000 (06:12 +0000)]
Fix: ip, sessionless module test

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10364 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years ago#535 Fix: change sorry uri regex.
0809216 [Wed, 13 Oct 2010 06:01:32 +0000 (06:01 +0000)]
#535 Fix: change sorry uri regex.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10363 1ed66053-1c2d-0410-8867-f7571e6e31d3

13 years ago#535 Fix: change sorry uri regex.
0809216 [Wed, 13 Oct 2010 05:52:03 +0000 (05:52 +0000)]
#535 Fix: change sorry uri regex.

git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel-epoll-cond@10362 1ed66053-1c2d-0410-8867-f7571e6e31d3