From e6869112100f67bc0ee9466348d4118d0dc830dd Mon Sep 17 00:00:00 2001 From: Baohua Yang <baohyang@cn.ibm.com> Date: Wed, 11 Dec 2013 15:19:24 +0800 Subject: [PATCH] Correct the comments of do_pingallfull() and do_iperfudp() --- mininet/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mininet/cli.py b/mininet/cli.py index 3df99ada..08638c80 100644 --- a/mininet/cli.py +++ b/mininet/cli.py @@ -160,7 +160,7 @@ def do_pingpair( self, _line ): self.mn.pingPair() def do_pingallfull( self, _line ): - "Ping between first two hosts, returns all ping results." + "Ping between all hosts, returns all ping results." self.mn.pingAllFull() def do_pingpairfull( self, _line ): @@ -187,7 +187,7 @@ def do_iperf( self, line ): error( 'invalid number of args: iperf src dst\n' ) def do_iperfudp( self, line ): - "Simple iperf TCP test between two (optionally specified) hosts." + "Simple iperf UDP test between two (optionally specified) hosts." args = line.split() if not args: self.mn.iperf( l4Type='UDP' ) -- GitLab