Commit b09460f0 authored by Victor Stinner's avatar Victor Stinner

Issue #10141: Don't use hardcoded frame size in example, use struct.calcsize()

parent 47413c11
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment