diff options
| author | luwenpeng <[email protected]> | 2024-10-23 10:10:20 +0800 |
|---|---|---|
| committer | luwenpeng <[email protected]> | 2024-10-23 10:10:15 +0800 |
| commit | 3f3059b40ff84dfe5b086948e58c49d0e35c11ba (patch) | |
| tree | 3a9f199c46caf37aef819ab495314b987c4931aa /conf | |
| parent | fd3cc20554cba6fe7ee7c671730079f81a2fbc5d (diff) | |
refactor: packet manager and session manager add on_thread_init/on_thread_exit entry
Diffstat (limited to 'conf')
| -rw-r--r-- | conf/stellar.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/stellar.toml b/conf/stellar.toml index b6e4bae..9454cb6 100644 --- a/conf/stellar.toml +++ b/conf/stellar.toml @@ -68,8 +68,12 @@ path = "" init = "packet_manager_on_init" exit = "packet_manager_on_exit" + thread_init = "packet_manager_on_thread_init" + thread_exit = "packet_manager_on_thread_exit" [[module]] path = "" init = "session_manager_on_init" exit = "session_manager_on_exit" + thread_init = "session_manager_on_thread_init" + thread_exit = "session_manager_on_thread_exit" |
