mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
Process RARP packets with ethertype 0x8035 similar to ARP packets.
With this commit, OVS will match the data in the RARP packets having ethertype 0x8035, in the same way as the data in the ARP packets. Signed-off-by: Mehak Mahajan <mmahajan@nicira.com>
This commit is contained in:
@@ -720,7 +720,8 @@ parse_protocol(const char *name, const struct protocol **p_out)
|
||||
{ "icmp6", ETH_TYPE_IPV6, IPPROTO_ICMPV6 },
|
||||
{ "tcp6", ETH_TYPE_IPV6, IPPROTO_TCP },
|
||||
{ "udp6", ETH_TYPE_IPV6, IPPROTO_UDP },
|
||||
};
|
||||
{ "rarp", ETH_TYPE_RARP, 0},
|
||||
};
|
||||
const struct protocol *p;
|
||||
|
||||
for (p = protocols; p < &protocols[ARRAY_SIZE(protocols)]; p++) {
|
||||
|
Reference in New Issue
Block a user