<div dir="ltr"><div class="gmail_default" style="font-family:monospace,monospace;font-size:large">get_use_time -> get_usebytes, the implementation of it libcharon is as shown below snippet. </div><div class="gmail_default" style="font-family:monospace,monospace;font-size:large">1) if bytes, packets are both zero, is the below code correct ?</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:large">2) here if they { *bytes, *packets } are '0' for both not calling update_usebytes in code below won't cause dpd to be triggered inspite of traffic.</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:large">thanks,</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:large">Regards</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:large">Venu</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:large"><br></div><div class="gmail_default" style="font-family:monospace,monospace;font-size:large"><table class="gmail-filecontent gmail-syntaxhl" style="border:1px solid rgb(226,226,226);border-collapse:collapse;width:1466.4px;background-color:rgb(250,250,250);color:rgb(54,0,12);font-family:Verdana,sans-serif;font-size:10.8px"><tbody style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;font-size:12px"><tr id="gmail-L675"><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">METHOD(child_sa_t, get_usestats, <span class="gmail-directive" style="color:rgb(0,136,136);font-weight:bold">void</span>,
</pre></td></tr><tr id="gmail-L676"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L676" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">676</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    private_child_sa_t *this, <span class="gmail-predefined-type" style="color:rgb(0,170,136);font-weight:bold">bool</span> inbound,
</pre></td></tr><tr id="gmail-L677"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L677" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">677</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    time_t *time, uint64_t *bytes, uint64_t *packets)
</pre></td></tr><tr id="gmail-L678"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L678" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">678</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">{
</pre></td></tr><tr id="gmail-L679"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L679" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">679</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    <span class="gmail-keyword" style="color:rgb(0,136,0);font-weight:bold">if</span> ((!bytes && !packets) || update_usebytes(this, inbound) != FAILED)
</pre></td></tr><tr id="gmail-L680"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L680" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">680</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    {
</pre></td></tr><tr id="gmail-L681"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L681" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">681</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">        <span class="gmail-comment" style="color:rgb(119,119,119)">/* there was traffic since last update or the kernel interface</span>
</pre></td></tr><tr id="gmail-L682"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L682" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">682</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap"><span class="gmail-comment" style="color:rgb(119,119,119)">         * does not support querying the number of usebytes.</span>
</pre></td></tr><tr id="gmail-L683"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L683" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">683</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap"><span class="gmail-comment" style="color:rgb(119,119,119)">         */</span>
</pre></td></tr><tr id="gmail-L684"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L684" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">684</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">        <span class="gmail-keyword" style="color:rgb(0,136,0);font-weight:bold">if</span> (time)
</pre></td></tr><tr id="gmail-L685"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L685" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">685</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">        {
</pre></td></tr><tr id="gmail-L686"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L686" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">686</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">            <span class="gmail-keyword" style="color:rgb(0,136,0);font-weight:bold">if</span> (!update_usetime(this, inbound) && !bytes && !packets)
</pre></td></tr><tr id="gmail-L687"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L687" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">687</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">            {
</pre></td></tr><tr id="gmail-L688"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L688" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">688</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">                <span class="gmail-comment" style="color:rgb(119,119,119)">/* if policy query did not yield a usetime, query SAs instead */</span>
</pre></td></tr><tr id="gmail-L689"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L689" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">689</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">                update_usebytes(this, inbound);
</pre></td></tr><tr id="gmail-L690"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L690" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">690</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">            }
</pre></td></tr><tr id="gmail-L691"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L691" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">691</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">        }
</pre></td></tr><tr id="gmail-L692"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L692" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">692</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    }
</pre></td></tr><tr id="gmail-L693"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L693" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">693</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    <span class="gmail-keyword" style="color:rgb(0,136,0);font-weight:bold">if</span> (time)
</pre></td></tr><tr id="gmail-L694"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L694" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">694</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    {
</pre></td></tr><tr id="gmail-L695"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L695" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">695</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">        *time = inbound ? this->my_usetime : this->other_usetime;
</pre></td></tr><tr id="gmail-L696"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L696" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">696</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    }
</pre></td></tr><tr id="gmail-L697"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L697" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">697</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    <span class="gmail-keyword" style="color:rgb(0,136,0);font-weight:bold">if</span> (bytes)
</pre></td></tr><tr id="gmail-L698"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L698" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">698</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    {
</pre></td></tr><tr id="gmail-L699"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L699" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">699</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">        *bytes = inbound ? this->my_usebytes : this->other_usebytes;
</pre></td></tr><tr id="gmail-L700"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L700" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">700</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    }
</pre></td></tr><tr id="gmail-L701"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L701" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">701</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    <span class="gmail-keyword" style="color:rgb(0,136,0);font-weight:bold">if</span> (packets)
</pre></td></tr><tr id="gmail-L702"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L702" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">702</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    {
</pre></td></tr><tr id="gmail-L703"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L703" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">703</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">        *packets = inbound ? this->my_usepackets : this->other_usepackets;
</pre></td></tr><tr id="gmail-L704"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L704" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">704</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">    }
</pre></td></tr><tr id="gmail-L705"><th class="gmail-line-num" style="border:1px solid rgb(226,226,226);background-color:rgb(238,238,238);text-align:right;width:26.6px;padding:0px 3px 0px 0px;color:rgb(153,153,153);font-weight:normal"><a href="https://wiki.strongswan.org/projects/strongswan/repository/revisions/master/entry/src/libcharon/sa/child_sa.c#L705" style="color:rgb(138,0,32);text-decoration-line:none;font-weight:bold">705</a></th><td class="gmail-line-code" style="padding:0px 0px 0px 4px"><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap">}</pre><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap"><br></pre><pre style="font-family:Consolas,Menlo,"Liberation Mono",Courier,monospace;margin-top:0px;margin-bottom:0px;white-space:pre-wrap"><br></pre></td></tr></tbody></table></div></div>