<p><a href="https://gerrit.osmocom.org/11929">View Change</a></p><p>1 comment:</p><ul style="list-style: none; padding: 0;"><li style="margin: 0; padding: 0;"><p><a href="https://gerrit.osmocom.org/#/c/11929/2/osmopy/osmo_ipa.py">File osmopy/osmo_ipa.py:</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.osmocom.org/#/c/11929/2/osmopy/osmo_ipa.py@126">Patch Set #2, Line 126:</a> <code style="font-family:monospace,monospace">        if (int(length) != 0):</code></p><p><blockquote style="border-left: 1px solid #aaa; margin: 10px 0; padding: 0 10px;">> if length == 0 or payload... […]</blockquote></p><p style="white-space: pre-wrap; word-wrap: break-word;">Well, that depends whether you want to return an IPA message with empty IPA payload ("return head"), or just skip it and continue looking for a CTRL message with some content (probably what you want, "return self.skip_traps(tail)").</p><p style="white-space: pre-wrap; word-wrap: break-word;">Otherwise if you'd receive an IPA message with len(payload) == 0 followed by an IPA message containing a CTRL message, it would be lost because you return None instead of head.</p><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><br>    def skip_traps(self, data):<br>        """<br>        Take one or more ctrl messages and data and return first non-TRAP message or None<br>        """<br>        if data == None or len(data) == 0:<br>            return None</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">        (head, tail) = self.split_combined(data)<br>        (length, _, _, payload) = self.del_header(head)<br>        if length == 0 or payload[:(length + 3)].decode('utf-8').startswith(self.CTRL_TRAP):<br>                return self.skip_traps(tail)<br>        else:<br>                return head</pre></li></ul></li></ul><p>To view, visit <a href="https://gerrit.osmocom.org/11929">change 11929</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.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.osmocom.org/11929"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: python/osmo-python-tests </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-MessageType: comment </div>
<div style="display:none"> Gerrit-Change-Id: I51ce207c19a1ca96c3e2af7d5efd64f79b02fbb4 </div>
<div style="display:none"> Gerrit-Change-Number: 11929 </div>
<div style="display:none"> Gerrit-PatchSet: 2 </div>
<div style="display:none"> Gerrit-Owner: Max <msuraev@sysmocom.de> </div>
<div style="display:none"> Gerrit-Reviewer: Harald Welte <laforge@gnumonks.org> </div>
<div style="display:none"> Gerrit-Reviewer: Jenkins Builder (1000002) </div>
<div style="display:none"> Gerrit-Reviewer: Max <msuraev@sysmocom.de> </div>
<div style="display:none"> Gerrit-Reviewer: Pau Espin Pedrol <pespin@sysmocom.de> </div>
<div style="display:none"> Gerrit-Reviewer: daniel <dwillmann@sysmocom.de> </div>
<div style="display:none"> Gerrit-Comment-Date: Tue, 27 Nov 2018 11:24:45 +0000 </div>
<div style="display:none"> Gerrit-HasComments: Yes </div>
<div style="display:none"> Gerrit-HasLabels: No </div>