New commits:
commit 4216aeab735d074340df405dad746e590cb29997
Author: Andrew Cagney <[email protected]>
Date:   Thu Oct 7 18:15:07 2021 -0400

    connections: invert route_owner()'s loop
    
    Change:
    
       for-all-connections(d)
         for-all-spds(c, c_spd)
            for-all-spds(d, d_spd)
          ...
    
    To the less tuned:
    
       for-all-spds(c, c_spd)
         for-all-connections(d)
           for-all-spds(d, d_spd)
          if c_spd.remote.selector!=d_spd.remote.selector
            continue
          ...
    
    It's a set up for:
    
       for-all-spds(c, c_spd)
         for-all-spds-by(c_spd.remote.selector, d_spd)

commit 576e97bcb77b5f4ce40563103adb47e44faf3c46
Author: Andrew Cagney <[email protected]>
Date:   Fri Oct 8 09:10:22 2021 -0400

    lists: change .newer/.older into .next[enum { OLD2NEW, NEW2OLD }]
    
    make generic code easier

_______________________________________________
Swan-commit mailing list
[email protected]
https://lists.libreswan.org/mailman/listinfo/swan-commit

Reply via email to