From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 42F955ABC for ; Mon, 16 May 2016 21:27:12 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga102.fm.intel.com with ESMTP; 16 May 2016 12:27:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,627,1459839600"; d="scan'208";a="104872928" Received: from imail001.iil.intel.com ([10.184.207.12]) by fmsmga004.fm.intel.com with ESMTP; 16 May 2016 12:27:10 -0700 Received: from cghost.iil.intel.com (cghost.iil.intel.com [143.185.141.163]) by imail001.iil.intel.com with ESMTP id u4GJR70x029667; Mon, 16 May 2016 22:27:07 +0300 From: Rami Rosen To: yong.liu@intel.com Cc: dts@dpdk.org, Rami Rosen Date: Mon, 16 May 2016 22:29:40 +0300 Message-Id: <1463426980-24769-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 2.4.3 Subject: [dts] [PATCH] framework: Fix a typo in etgen.py. X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 19:27:12 -0000 This patch fixes a typo in etgen.py. Signed-off-by: Rami Rosen --- framework/etgen.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/framework/etgen.py b/framework/etgen.py index 62db2ed..3102fc2 100644 --- a/framework/etgen.py +++ b/framework/etgen.py @@ -236,7 +236,7 @@ class IxiaPacketGenerator(SSHConnection): def ether(self, port, src, dst, type): """ - Configure Ether protocal. + Configure Ether protocol. """ self.add_tcl_cmd("protocol config -ethernetType ethernetII") self.add_tcl_cmd('stream config -sa "%s"' % self.macToTclFormat(src)) @@ -244,7 +244,7 @@ class IxiaPacketGenerator(SSHConnection): def ip(self, port, frag, src, proto, tos, dst, chksum, len, version, flags, ihl, ttl, id, options=None): """ - Configure IP protocal. + Configure IP protocol. """ self.add_tcl_cmd("protocol config -name ip") self.add_tcl_cmd('ip config -sourceIpAddr "%s"' % src) @@ -266,7 +266,7 @@ class IxiaPacketGenerator(SSHConnection): def ipv6(self, port, version, tc, fl, plen, nh, hlim, src, dst): """ - Configure IPv6 protocal. + Configure IPv6 protocol. """ self.add_tcl_cmd("protocol config -name ipV6") self.add_tcl_cmd('ipV6 setDefault') @@ -284,7 +284,7 @@ class IxiaPacketGenerator(SSHConnection): def udp(self, port, dport, sport, len, chksum): """ - Configure UDP protocal. + Configure UDP protocol. """ self.add_tcl_cmd("udp setDefault") self.add_tcl_cmd("udp config -sourcePort %d" % sport) @@ -302,7 +302,7 @@ class IxiaPacketGenerator(SSHConnection): def tcp(self, port, sport, dport, seq, ack, dataofs, reserved, flags, window, chksum, urgptr, options=None): """ - Configure TCP protocal. + Configure TCP protocol. """ self.add_tcl_cmd("tcp setDefault") self.add_tcl_cmd("tcp config -sourcePort %d" % sport) @@ -311,7 +311,7 @@ class IxiaPacketGenerator(SSHConnection): def sctp(self, port, sport, dport, tag, chksum): """ - Configure SCTP protocal. + Configure SCTP protocol. """ self.add_tcl_cmd("tcp config -sourcePort %d" % sport) self.add_tcl_cmd("tcp config -destPort %d" % dport) @@ -319,7 +319,7 @@ class IxiaPacketGenerator(SSHConnection): def dot1q(self, port, prio, id, vlan, type): """ - Configure 8021Q protocal. + Configure 8021Q protocol. """ self.add_tcl_cmd("protocol config -enable802dot1qTag true") self.add_tcl_cmd("vlan config -vlanID %d" % vlan) -- 2.4.3