Skip to content
Snippets Groups Projects
  1. Sep 11, 2013
  2. Aug 16, 2013
  3. Aug 15, 2013
  4. Jul 20, 2013
  5. Jul 19, 2013
  6. Jul 09, 2013
  7. Jul 04, 2013
  8. Jun 26, 2013
  9. Jun 12, 2013
  10. Jun 04, 2013
  11. Mar 08, 2013
  12. Mar 07, 2013
  13. Mar 01, 2013
  14. Dec 01, 2012
  15. Nov 20, 2012
  16. Nov 14, 2012
    • Brandon Heller's avatar
    • Brandon Heller's avatar
      examples/simpleperf: Warn in docstring about effects of link settings · d7768ab2
      Brandon Heller authored
      These include dropped pings and iperf hanging.
      d7768ab2
    • Brandon Heller's avatar
      Fix SSHD example by generalizing input intf args · bf208cde
      Brandon Heller authored
      A number of functions in node.py look like this:
         return self.intf( intf ).<other stuff>
      
      Previously, self.intf(...) in Node would expect a string name for an
      interface and return None if an object was passed in instead of a
      string name.
      
      Now, be more permissive and assume that objects passed in are for Intf
      objects.  This makes all such functions in node.py handle more flexible
      input args, either name or actual Intf object.
      
      An alternative and equally valid approach would be to raise an Exception
      whenever a non-string, non-falsy value was passed in to Node.intf(), and
      to modify the code in at least one place - examples/sshd.py - to pass
      the interface name, rather than the interface object.
      
      Also fix input args for examples/scratchnetuser.py - the interface name
      was being passed in as the prefix len, which makes no sense.
      bf208cde
Loading