mirror of
https://github.com/faucetsdn/ryu.git
synced 2026-05-09 06:16:10 +02:00
rest_router: Fix conversion of Packet Library to dict
On Python3, rest_router fails to compare the type of protocols in the Packet Library instances, because the non-parsed packet data is not str type but bytes type. This patch fixes to compare the protocols instance type with packet_base.PacketBase and enable to convert the Packet Library instances to dict. Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
e80a36317a
commit
2ebb9218b2
@ -40,6 +40,7 @@ from ryu.lib.packet import ethernet
|
||||
from ryu.lib.packet import icmp
|
||||
from ryu.lib.packet import ipv4
|
||||
from ryu.lib.packet import packet
|
||||
from ryu.lib.packet import packet_base
|
||||
from ryu.lib.packet import tcp
|
||||
from ryu.lib.packet import udp
|
||||
from ryu.lib.packet import vlan
|
||||
@ -569,7 +570,8 @@ class Router(dict):
|
||||
# TODO: Packet library convert to string
|
||||
# self.logger.debug('Packet in = %s', str(pkt), self.sw_id)
|
||||
header_list = dict((p.protocol_name, p)
|
||||
for p in pkt.protocols if type(p) != str)
|
||||
for p in pkt.protocols
|
||||
if isinstance(p, packet_base.PacketBase))
|
||||
if header_list:
|
||||
# Check vlan-tag
|
||||
vlan_id = VLANID_NONE
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user