PERFORCE change 100276 for review

Clément Lecigne clem1 at FreeBSD.org
Thu Jun 29 08:40:44 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=100276

Change 100276 by clem1 at 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


More information about the p4-projects mailing list