1. 10 5月, 2014 1 次提交
  2. 22 3月, 2014 1 次提交
  3. 18 2月, 2014 3 次提交
  4. 16 1月, 2014 1 次提交
  5. 12 1月, 2014 7 次提交
  6. 09 1月, 2014 1 次提交
  7. 28 12月, 2013 1 次提交
  8. 23 10月, 2013 7 次提交
  9. 10 10月, 2013 4 次提交
  10. 28 8月, 2013 2 次提交
  11. 10 6月, 2013 1 次提交
    • S
      batman-adv: forward late OGMs from best next hop · 7c24bbbe
      Simon Wunderlich 提交于
      When a packet is received from another node first and later from the
      best next hop, this packet is dropped. However the first OGM was sent
      with the BATADV_NOT_BEST_NEXT_HOP flag and thus dropped by neighbors.
      The late OGM from the best neighbor is then dropped because it is a
      duplicate.
      
      If this situation happens constantly, a node might end up not forwarding
      the "valid" OGMs anymore, and nodes behind will starve from not getting
      valid OGMs.
      
      Fix this by refining the duplicate checking behaviour: The actions
      should depend on whether it was a duplicate for a neighbor only or for
      the originator. OGMs which are not duplicates for a specific neighbor
      will now be considered in batadv_iv_ogm_forward(), but only actually
      forwarded for the best next hop. Therefore, late OGMs from the best
      next hop are forwarded now and not dropped as duplicates anymore.
      Signed-off-by: NSimon Wunderlich <simon@open-mesh.com>
      Signed-off-by: NMarek Lindner <lindner_marek@yahoo.de>
      Signed-off-by: NAntonio Quartulli <ordex@autistici.org>
      7c24bbbe
  12. 29 5月, 2013 9 次提交
  13. 14 3月, 2013 1 次提交
    • M
      batman-adv: network coding - detect coding nodes and remove these after timeout · d56b1705
      Martin Hundebøll 提交于
      To use network coding efficiently, a relay must know when neighbor nodes
      are likely to have enough information to be able to decode a network
      coded packet. This is detected by using OGMs from batman-adv to discover
      when one neighbor is in range of another neighbor. The relay check the
      TLL to detect when an OGM is forwarded from one neighbor by another
      neighbor, and thereby knows that the two neighbors are in range and thus
      overhear packets sent by each other.
      
      This information is saved in the orig_node struct to be used when
      searching for coding opportunities. Two lists are added to the
      orig_node struct: One for neighbors that can hear the orig_node
      (outgoing nc_nodes) and one for neighbors that the orig_node can hear
      (incoming nc_nodes).
      
      Information about nc_nodes is kept for 10 seconds and is available
      through debugfs in batman_adv/nc_nodes to use when debugging network
      coding.
      Signed-off-by: NMartin Hundebøll <martin@hundeboll.net>
      Signed-off-by: NMarek Lindner <lindner_marek@yahoo.de>
      Signed-off-by: NAntonio Quartulli <ordex@autistici.org>
      d56b1705
  14. 12 3月, 2013 1 次提交