This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar-2022/src/plugin_manager/test/config_example/normal_config.inf

38 lines
1.2 KiB
INI
Raw Normal View History

[PLUGINFO]
INIT_FUNC="test_plugin_init"
EXIT_FUNC="test_plugin_exit"
LIBRARY_PATH="./test_plugin.so"
# Support SESSION_STATE: "SESSION_STATE_OPENING", "SESSION_STATE_ACTIVE", "SESSION_STATE_CLOSING", "SESSION_STATE_ALL"
[SESSION_NAME.TEST0]
SESSION_STATE=["SESSION_STATE_OPENING"]
SESSION_ENTRY_CALLBACK="test_plugin_entry0"
[SESSION_NAME.TEST1]
SESSION_STATE=["SESSION_STATE_ACTIVE"]
SESSION_ENTRY_CALLBACK="test_plugin_entry1"
[SESSION_NAME.TEST2]
SESSION_STATE=["SESSION_STATE_CLOSING"]
SESSION_ENTRY_CALLBACK="test_plugin_entry2"
[SESSION_NAME.TEST3]
SESSION_STATE=["SESSION_STATE_ALL"]
SESSION_ENTRY_CALLBACK="test_plugin_entry3"
[SESSION_NAME.TEST4]
SESSION_STATE=["SESSION_STATE_OPENING","SESSION_STATE_ACTIVE"]
SESSION_ENTRY_CALLBACK="test_plugin_entry4"
[SESSION_NAME.TEST5]
SESSION_STATE=["SESSION_STATE_ACTIVE","SESSION_STATE_CLOSING"]
SESSION_ENTRY_CALLBACK="test_plugin_entry5"
[SESSION_NAME.TEST6]
SESSION_STATE=["SESSION_STATE_OPENING","SESSION_STATE_CLOSING"]
SESSION_ENTRY_CALLBACK="test_plugin_entry6"
[SESSION_NAME.TEST7]
SESSION_STATE=["SESSION_STATE_OPENING","SESSION_STATE_ACTIVE","SESSION_STATE_CLOSING"]
SESSION_ENTRY_CALLBACK="test_plugin_entry7"