Add rarp protocol for neutron constants

We should support rarp protocol(0x8035) for live-migration
A release note is also included.

Change-Id: I52c115acdb1a8c464f5fc6273f6d8c4d0c6526e9
Partial-Bug: #1831404
This commit is contained in:
Yang Li 2019-05-29 17:21:53 +08:00
parent 96b82602fb
commit 7d11cd6211
2 changed files with 5 additions and 0 deletions

View File

@ -422,6 +422,7 @@ SORT_DIRECTION_DESC = 'desc'
ETHERTYPE_NAME_ARP = 'arp'
ETHERTYPE_ARP = 0x0806
ETHERTYPE_RARP = 0x8035
ETHERTYPE_IP = 0x0800
ETHERTYPE_IPV6 = 0x86DD

View File

@ -0,0 +1,4 @@
---
features:
- |
Add ``ETHERTYPE_RARP`` constant which represents RARP protocol to support live-migration.