adding at_server_init to at_server_startstop
This commit is contained in:
parent
99d300799e
commit
18edbce624
3 changed files with 38 additions and 14 deletions
|
|
@ -7,6 +7,7 @@ allows for customizing the server operation as desired.
|
|||
|
||||
This module must contain at least these global functions:
|
||||
|
||||
at_server_init()
|
||||
at_server_start()
|
||||
at_server_stop()
|
||||
at_server_reload_start()
|
||||
|
|
@ -16,6 +17,11 @@ at_server_cold_stop()
|
|||
|
||||
"""
|
||||
|
||||
def at_server_init():
|
||||
"""
|
||||
This is called first as the server is starting up, regardless of how.
|
||||
"""
|
||||
pass
|
||||
|
||||
def at_server_start():
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue