* Check for the events that should be logged when a call is made. * * This just calls checkCallHandlerEvents() followed by * checkCallPostHandlerEvents(). * * Returns the call ID allocated by the server. */
| 410 | * Returns the call ID allocated by the server. |
| 411 | */ |
| 412 | uint32_t checkCallEvents(const std::shared_ptr<EventLog>& log, |
| 413 | uint32_t connId, |
| 414 | EventType callType, |
| 415 | const string& callName) { |
| 416 | uint32_t callId = checkCallHandlerEvents(log, connId, callType, callName); |
| 417 | checkCallPostHandlerEvents(log, connId, callId, callName); |
| 418 | |
| 419 | return callId; |
| 420 | } |
| 421 | |
| 422 | /* |
| 423 | * Test functions |
no test coverage detected