diff options
author | Neale Ranns <nranns@cisco.com> | 2019-07-25 06:11:58 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-07-26 09:32:56 +0000 |
commit | 99536f4b492478bab66ee8c6b0905a940b8db3c9 (patch) | |
tree | 8e8142c626629d140a577b7e53db6eeb054a74a4 /src/vlib | |
parent | 1f5a6063c17e3d775773352e1fba725b09ad84ca (diff) |
dhcp: send unicast and broadcast packets via the IP adjacency
Type: feature
this means DHCP packets are subject to the IP features configured on the interface
- the unicast packets already were sent throught the adj
- added UT for DHCP client sending a unicast renewal
Change-Id: Id50db0b71822f44bf7cb639a524195cdc9873526
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vlib')
-rw-r--r-- | src/vlib/trace_funcs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vlib/trace_funcs.h b/src/vlib/trace_funcs.h index 257c3a3a4ff..d0eeb29837b 100644 --- a/src/vlib/trace_funcs.h +++ b/src/vlib/trace_funcs.h @@ -145,7 +145,7 @@ vlib_trace_buffer (vlib_main_t * vm, (struct vlib_trace_main_t *) tm); } - vlib_trace_next_frame (vm, r, next_index); + //vlib_trace_next_frame (vm, r, next_index); pool_get (tm->trace_buffer_pool, h); |