diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/examples/handoffdemo/README.md | 2 | ||||
-rw-r--r-- | src/vnet/ip/punt.rst (renamed from src/vnet/ip/punt.md) | 21 |
2 files changed, 11 insertions, 12 deletions
diff --git a/src/examples/handoffdemo/README.md b/src/examples/handoffdemo/README.md index 3787731c73f..e38c7b3cca0 100644 --- a/src/examples/handoffdemo/README.md +++ b/src/examples/handoffdemo/README.md @@ -1,4 +1,4 @@ -# Handoff queue demo plugin +# Handoff queue demo plugin {#handoff_queue_demo_plugin} This plugin provides a simplified example of how to hand off packets between threads. I used it to debug packet-tracer handoff diff --git a/src/vnet/ip/punt.md b/src/vnet/ip/punt.rst index 2bbb5f6b97e..3f1a9d4a844 100644 --- a/src/vnet/ip/punt.md +++ b/src/vnet/ip/punt.rst @@ -1,10 +1,10 @@ -.. _punt: +.. _dev_punt: + +.. toctree:: Punting Packets =============== -.. toctree:: - Overview ________ @@ -17,8 +17,8 @@ A popular meaning of punt is to send packets to the user/control-plane. This is specific option of the more general case above, where VPP is handing the packet to the control-plane for further prosessing. -The Punt Infrastructe ---------------------- +The Punt Infrastructure +_______________________ Exception packets are those that a given node cannot handle via normal mecahnisms. @@ -37,7 +37,7 @@ that the source node would otherise drop. Punting to the Control Plane ----------------------------- +____________________________ Active Punt ----------- @@ -47,11 +47,10 @@ want to receive and this is where I want it sent. Currently there exists 3 ways to describe how to match/classify the packets to be punted: -... - 1) a matching UDP port - 2) a matching IP protocol (i.e. OSPF) - 3) a matching punt excpetion reason (see above) -... + +1) a matching UDP port +2) a matching IP protocol (i.e. OSPF) +3) a matching punt excpetion reason (see above) Depending on the type/classification of the packet to be punted, that active punt will register itself into the VLIB graph to receive those |