Merge pull request #303 from jhall11/pingall

Add a timeout parameter to the pingAll command
This commit is contained in:
lantz
2014-05-07 13:31:44 -07:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -579,10 +579,10 @@ class Mininet( object ):
(rttmin, rttavg, rttmax, rttdev) )
return all_outputs
def pingAll( self ):
def pingAll( self, timeout=None ):
"""Ping between all hosts.
returns: ploss packet loss percentage"""
return self.ping()
return self.ping( timeout=timeout )
def pingPair( self ):
"""Ping between first two hosts, useful for testing.