diff options
author | Neale Ranns <nranns@cisco.com> | 2017-02-16 03:38:59 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-02-16 04:01:06 -0800 |
commit | 2dd6852d8109e39d15a5c60f7ba58f1abcf9e455 (patch) | |
tree | a63089809ea20b2ed69c26c211d7e2f2454e3e5b /test/test_dhcp.py | |
parent | c8c5335e3a1d1ba7ec1248b0ecbf00cc74ea57bb (diff) |
Consolidate DHCP v4 and V6 implementation. No functional change intended
The DHCP proxy and VSS information maintained by VPP is the same for v4 and v6, so we can manage this state using the same code.
Packet handling is cleary different, so this is kept separate.
Change-Id: I10f10cc1f7f19debcd4c4b099c6de64e56bb0c69
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/test_dhcp.py')
-rw-r--r-- | test/test_dhcp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_dhcp.py b/test/test_dhcp.py index fbfb8a0c0df..6299975b869 100644 --- a/test/test_dhcp.py +++ b/test/test_dhcp.py @@ -293,7 +293,7 @@ class TestDHCP(VppTestCase): # # Inject a response from the server # dropped, because there is no IP addrees on the - # clinet interfce to fill in the option. + # client interfce to fill in the option. # p = (Ether(dst=self.pg0.local_mac, src=self.pg0.remote_mac) / IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) / |