Files Loading and Callbacks Order
This section describes the steps that take place when different actions are executed or an event is triggered.
System Events
OverSIP starts
When OverSIP is started it performs the following steps:
oversip.confandproxies.confare loaded and configuration parameters validated.server.rbis loaded.OverSIP::SystemEvents.on_startedmethod is called.- The event loop starts.
OverSIP terminates
When OverSIP is stopped it performs the following steps:
OverSIP::SystemEvents.on_terminatedmethod is called.- NOTE: This step does not take place if OverSIP failed to start.
OverSIP is reloaded
When OverSIP is reloaded (via a HUP signal or /etc/init.d/oversip reload) it performs the following steps:
proxies.confis reloaded and configuration parameters validated.server.rbis reloaded.
OverSIP is user-reloaded
When OverSIP is user-reloaded (via a USR1 signal or /etc/init.d/oversip user-reload) it performs the following steps:
OverSIP::SystemEvents.on_user_reloadmethod is called.- Here the user can place custom code (i.e. for reloading an
Arrayvariable with data retrieved from the database).
- Here the user can place custom code (i.e. for reloading an
SIP Events
A SIP client initiates a TLS connection with OverSIP
When a SIP client initiates a TLS handshake OverSIP performs the following steps:
OverSIP::SipEvents.on_client_tls_handshakemethod is called.
OverSIP initiates a TLS connection with a SIP server
When OverSIP attempts to open a SIP TLS connection with a server it performs the following steps:
OverSIP::SipEvents.on_server_tls_handshakemethod is called.
A SIP request is received
When OverSIP receives a SIP request it performs the following steps:
OverSIP::SipEvents.sip_on_requestmethod is called.
WebSocket Events
A WebSocket client initiates a TLS connection with OverSIP
When a WebSocket client initiates a TLS handshake (thus WSS protocol) OverSIP performs the following steps:
OverSIP::WebSocketEvents.on_client_tls_handshakemethod is called.
A WebSocket handshake request is received
When OverSIP receives a WebSocket handshake request (HTTP GET method) it performs the following steps:
OverSIP::WebSocketEvents.on_connectionmethod is called.
A WebSocket established connection is closed
When a successfully established WebSocket connection is closed (by the client or by OverSIP) OverSIP performs the following steps:
OverSIP::WebSocketEvents.on_disconnectionmethod is called.