]> granicus.if.org Git - python/commitdiff
Issue #10141: Don't use hardcoded frame size in example, use struct.calcsize()
authorVictor Stinner <victor.stinner@haypocalc.com>
Thu, 6 Oct 2011 18:27:20 +0000 (20:27 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Thu, 6 Oct 2011 18:27:20 +0000 (20:27 +0200)
Doc/library/socket.rst

index 030a421c3098cd8156323dd42386f8d1652d3c31..f9e0780187f7a2b49b6f12bbe3f641b7e4d808a8 100644 (file)
@@ -1270,6 +1270,7 @@ network. This example might require special priviledge::
    # CAN frame packing/unpacking (see `struct can_frame` in <linux/can.h>)
 
    can_frame_fmt = "=IB3x8s"
+   can_frame_size = struct.calcsize(can_frame_fmt)
 
    def build_can_frame(can_id, data):
        can_dlc = len(data)
@@ -1286,7 +1287,7 @@ network. This example might require special priviledge::
    s.bind(('vcan0',))
 
    while True:
-       cf, addr = s.recvfrom(16)
+       cf, addr = s.recvfrom(can_frame_size)
 
        print('Received: can_id=%x, can_dlc=%x, data=%s' % dissect_can_frame(cf))