diff options
| author | lijia <[email protected]> | 2024-05-24 22:47:32 +0800 |
|---|---|---|
| committer | lijia <[email protected]> | 2024-06-03 11:08:06 +0800 |
| commit | 1c232f0176c43c93c3e787ac83f3573bf42c58f1 (patch) | |
| tree | 734c31a97ec38847972b70a18ec075fd415bb5f6 /test_based_on_stellar/env | |
| parent | 22d071e23ff423242f51dce2eab1477b5fb9d106 (diff) | |
Adapt to stellar2.0;update API,add HDR_END,BODY_END,TRANSACTION_NEW,FREE msg.v2.0.2
Diffstat (limited to 'test_based_on_stellar/env')
| -rw-r--r-- | test_based_on_stellar/env/conflist.inf | 1 | ||||
| -rw-r--r-- | test_based_on_stellar/env/defer_loader.inf | 14 | ||||
| -rw-r--r-- | test_based_on_stellar/env/start_loader.inf | 21 |
3 files changed, 30 insertions, 6 deletions
diff --git a/test_based_on_stellar/env/conflist.inf b/test_based_on_stellar/env/conflist.inf index 1b70e78..5449f7d 100644 --- a/test_based_on_stellar/env/conflist.inf +++ b/test_based_on_stellar/env/conflist.inf @@ -4,3 +4,4 @@ [protocol] [business] +./plug/stellar_on_sapp/defer_loader.inf diff --git a/test_based_on_stellar/env/defer_loader.inf b/test_based_on_stellar/env/defer_loader.inf new file mode 100644 index 0000000..f31e043 --- /dev/null +++ b/test_based_on_stellar/env/defer_loader.inf @@ -0,0 +1,14 @@ +[PLUGINFO] +PLUGNAME=stellar_defer_loader +SO_PATH=./plug/stellar_on_sapp/stellar_on_sapp.so +INIT_FUNC=STELLAR_DEFER_LOADER_INIT +DESTROY_FUNC=STELLAR_DEFER_LOADER_EXIT + +[TCP_ALL] +FUNC_FLAG=ALL +FUNC_NAME=stellar_on_sapp_defer_entry + +[UDP] +FUNC_FLAG=ALL +FUNC_NAME=stellar_on_sapp_defer_entry + diff --git a/test_based_on_stellar/env/start_loader.inf b/test_based_on_stellar/env/start_loader.inf index 545c4f7..ce1dc1b 100644 --- a/test_based_on_stellar/env/start_loader.inf +++ b/test_based_on_stellar/env/start_loader.inf @@ -8,14 +8,23 @@ DESTROY_FUNC=STELLAR_START_LOADER_EXIT FUNC_FLAG=ALL FUNC_NAME=stellar_on_sapp_tcpall_entry -#[TCP] -#FUNC_FLAG=ALL -#FUNC_NAME=stellar_on_sapp_tcp_entry +[TCP] +FUNC_FLAG=ALL +FUNC_NAME=stellar_on_sapp_tcp_entry -#[TCP] -#FUNC_FLAG=ALL -#FUNC_NAME=stellar_on_sapp_detach_check_entry [UDP] FUNC_FLAG=ALL FUNC_NAME=stellar_on_sapp_udp_entry + +[IP] +FUNC_FLAG=ALL +FUNC_NAME=stellar_on_sapp_ip4_entry + +[IPV6] +FUNC_FLAG=ALL +FUNC_NAME=stellar_on_sapp_ip6_entry + +[POLLING] +FUNC_FLAG=ALL +FUNC_NAME=stellar_on_sapp_polling_entry |
