Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Jun 2006 08:40:43 GMT
From:      Clément Lecigne <clem1@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 100276 for review
Message-ID:  <200606290840.k5T8ehBG025504@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=100276

Change 100276 by clem1@clem1_ipv6vulns on 2006/06/29 08:40:06

	udpv6.py packet manipulation and last bug fix for tcp.py. 	

Affected files ...

.. //depot/projects/soc2006/clem1_ipv6vulns/pcs/pcs/packets/tcp.py#4 edit
.. //depot/projects/soc2006/clem1_ipv6vulns/pcs/pcs/packets/udpv6.py#1 add

Differences ...

==== //depot/projects/soc2006/clem1_ipv6vulns/pcs/pcs/packets/tcp.py#4 (text+ko) ====

@@ -66,7 +66,7 @@
         retval = ""
         for field in self.layout:
             if (field.type == str):
-                retval += "%s %s\n" % (field.name, value)
+                retval += "%s %s\n" % (field.name, self.__dict__[field.name])
             else:
                 retval += "%s %d\n" % (field.name, self.__dict__[field.name])
         return retval



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606290840.k5T8ehBG025504>