<p>Patch set 1:<span style="border-radius: 3px; display: inline-block; margin: 0 2px; padding: 4px;background-color: #ffd4d4;">Code-Review -1</span></p><p><a href="https://gerrit.asterisk.org/10715">View Change</a></p><p>5 comments:</p><ul style="list-style: none; padding: 0;"><li style="margin: 0; padding: 0;"><p><a href="https://gerrit.asterisk.org/#/c/10715/1//COMMIT_MSG">Commit Message:</a></p><ul style="list-style: none; padding: 0;"><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/#/c/10715/1//COMMIT_MSG@9">Patch Set #1, Line 9:</a> <code style="font-family:monospace,monospace">This module is sending an event messages for a given channel's SIP</code></p><p style="white-space: pre-wrap; word-wrap: break-word;">What is the use case or reason for this? ARI itself isn't really made or designed for acting as a logging mechanism for SIP.</p></li></ul></li><li style="margin: 0; padding: 0;"><p><a href="https://gerrit.asterisk.org/#/c/10715/1/res/res_pjsip_sip_message.c">File res/res_pjsip_sip_message.c:</a></p><ul style="list-style: none; padding: 0;"><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/#/c/10715/1/res/res_pjsip_sip_message.c@22">Patch Set #1, Line 22:</a> <code style="font-family:monospace,monospace">     <support_level>core</support_level></code></p><p style="white-space: pre-wrap; word-wrap: break-word;">This should be extended support level, and disabled by default. This incurs a performance penalty, and most individuals would never use it.</p></li><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/#/c/10715/1/res/res_pjsip_sip_message.c@68">Patch Set #1, Line 68:</a> </p><p><blockquote style="border-left: 1px solid #aaa; margin: 10px 0; padding: 0 10px;"><pre style="font-family: monospace,monospace; white-space: pre-wrap;">static struct ast_sip_session_supplement supp_sip_in_req = {<br>           .priority = AST_SIP_SUPPLEMENT_PRIORITY_CHANNEL + 1,<br>          .incoming_request = incoming_request_handler,<br>};<br><br>static struct ast_sip_session_supplement supp_sip_in_res = {<br>             .priority = AST_SIP_SUPPLEMENT_PRIORITY_CHANNEL + 1,<br>          .incoming_response = incoming_response_handler,<br>};<br><br>static struct ast_sip_session_supplement supp_sip_out_req = {<br>          .priority = AST_SIP_SUPPLEMENT_PRIORITY_CHANNEL + 1,<br>          .outgoing_request = outgoing_request_handler,<br>};<br><br>static struct ast_sip_session_supplement supp_sip_out_res = {<br>            .priority = AST_SIP_SUPPLEMENT_PRIORITY_CHANNEL + 1,<br>          .outgoing_response = outgoing_response_handler,<br>};<br></pre></blockquote></p><p style="white-space: pre-wrap; word-wrap: break-word;">These can all be combined into a single supplement.</p></li><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/#/c/10715/1/res/res_pjsip_sip_message.c@136">Patch Set #1, Line 136:</a> </p><p><blockquote style="border-left: 1px solid #aaa; margin: 10px 0; padding: 0 10px;"><pre style="font-family: monospace,monospace; white-space: pre-wrap;">       if ((!session) || (!tdata)) {<br>         ast_log(LOG_WARNING, "Wrong input parameters.\n");<br>          return;<br>       }<br><br>   /* check message type. */<br>     if (tdata->msg->type != PJSIP_REQUEST_MSG) {<br>            ast_log(LOG_ERROR, "Wrong message type. It should not reach to here.\n");<br>           return;<br>       }<br></pre></blockquote></p><p style="white-space: pre-wrap; word-wrap: break-word;">The API provides a guarantee that these can't happen. Same applies elsewhere.</p></li><li style="margin: 0; padding: 0 0 0 16px;"><p style="margin-bottom: 4px;"><a href="https://gerrit.asterisk.org/#/c/10715/1/res/res_pjsip_sip_message.c@247">Patch Set #1, Line 247:</a> <code style="font-family:monospace,monospace">        snapshot = ast_channel_snapshot_create(session->channel);</code></p><p style="white-space: pre-wrap; word-wrap: break-word;">There is a large penalty for creating a channel snapshot. Instead the current snapshot on the channel should be retrieved and used.</p></li></ul></li></ul><p>To view, visit <a href="https://gerrit.asterisk.org/10715">change 10715</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/10715"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-MessageType: comment </div>
<div style="display:none"> Gerrit-Change-Id: I1dedcc678265ebb74d35e7a2f58bc4b5084bcfe1 </div>
<div style="display:none"> Gerrit-Change-Number: 10715 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: sungtae kim <pchero21@gmail.com> </div>
<div style="display:none"> Gerrit-Reviewer: Jenkins2 (1000185) </div>
<div style="display:none"> Gerrit-Reviewer: Joshua Colp <jcolp@digium.com> </div>
<div style="display:none"> Gerrit-Comment-Date: Tue, 27 Nov 2018 13:52:37 +0000 </div>
<div style="display:none"> Gerrit-HasComments: Yes </div>
<div style="display:none"> Gerrit-HasLabels: Yes </div>