1. 22 Jan, 2018 1 commit
  2. 11 Aug, 2017 1 commit
    • Juliusz Chroboczek's avatar
      Send requests when we lose a route. · 97cb759d
      Juliusz Chroboczek authored
      When we lose a route and have no feasible alternate, we should send requests
      straight away rather than waiting for a periodic update.  If we have an
      unfeasible route, send according to that route and resend, otherwise do
      a multicast.
      97cb759d
  3. 25 Jul, 2017 1 commit
  4. 23 May, 2017 2 commits
  5. 18 May, 2017 2 commits
  6. 19 Apr, 2017 3 commits
  7. 09 Mar, 2017 6 commits
  8. 06 Dec, 2016 1 commit
  9. 31 Jul, 2016 5 commits
  10. 29 Jul, 2016 1 commit
  11. 24 Jun, 2016 1 commit
  12. 05 Jun, 2016 1 commit
  13. 29 Apr, 2016 2 commits
  14. 27 Apr, 2016 2 commits
  15. 17 Apr, 2016 2 commits
    • Juliusz Chroboczek's avatar
      Update CHANGES. · b648a179
      Juliusz Chroboczek authored
      b648a179
    • Matthieu Boutier's avatar
      Fix route->channels double-free corruption. · ab66a56a
      Matthieu Boutier authored
      The code assumes that route->channels is NULL when route->channels_len
      is 0, such that free(route->channels) will work.
      
      Think about this scenario:
        update(r, some channels)  # route->channels = malloc(…)
        update(r, no channel)  # free(route->channels)
        update(r, no channel)  # free(route->channels)
      
      Thanks to Dave Taht for pointing the issue.
      ab66a56a
  16. 15 Apr, 2016 1 commit
    • Matthieu Boutier's avatar
      Fix bug allowing the comparison of v4 and v6 prefixes. · e687a58f
      Matthieu Boutier authored
      When the v6 prefix is ::/0, then it is considered as less specific than
      any v4-mapped prefix.
      
      Remark that "no source prefix" is encoded by "src_plen == 0".  This
      might be an issue, since "src_plen == 0" means ::/0, a v6 prefix.  So
      the route (1.1.1.1/32 from 0.0.0.0/0) is internally represented by
      (1.1.1.1/32 from ::/0).  When compared with  (::/0 from 2001:db8::/32),
      the two source prefixes are comparable.  This is not a problem in
      practice, since 2 pairs of prefixes are disjoint whether the dst
      prefixes or the src prefixes are disjoint.
      e687a58f
  17. 08 Apr, 2016 1 commit
  18. 24 Mar, 2016 3 commits
  19. 23 Mar, 2016 1 commit
  20. 14 Mar, 2016 1 commit
  21. 17 Feb, 2016 1 commit
  22. 16 Feb, 2016 1 commit