blob: 3fb8c3127f80758dbeaeac83e6e4e1a95f15ab2e [file] [log] [blame]
Nathan Skrzypczak8acc5ee2021-10-12 14:00:25 +02001.. _libmemif_examples_doc:
2
3Examples
4========
5
6After build, root folder will contain scripts linking binary examples
7with library (same name as example apps). These scripts can be executed
8to run example apps without installing the library. Example apps
9binaries can be found in *libs* folder. To run binaries directly, make
10sure that libmemif library is installed.
11
12Run in container
13----------------
14
15``ligato/libmemif-sample-service`` image contains built and installed
16libmemf. To run different examples, override docker CMD to start
17container in bash:
18
19::
20
21 # docker run -it --entrypoint=/bin/bash -i --rm --name icmp-responder --hostname icmp-responder --privileged -v "/run/vpp/:/run/vpp/" ligato/libmemif-sample-service
22
23Current WORKDIR is set to root repository directory. Example apps can be
24run from this directory (a script linking binary with library), or
25browse to ``./.libs`` folder and execute binary directly.
26
27* ``extras/libmemif/examples/icmp_responder``
28
29Simplest implementation. Event polling is handled by libmemif.
30Single memif connection in slave mode is created (id 0). Use Ctrl + C to exit app.
31Memif receive mode: interrupt.
32
33* ``extras/libmemif/examples/icmp_responder-epoll`` (run in container by default)
34
35Supports multiple connections and master mode. User can create/delete connections, set ip addresses,
36print connection information. :ref:`libmemif_example_setup_doc` contains instructions on basic
37connection use cases setups. Memif receive mode: interrupt. App provides functionality to disable
38interrupts for specified queue/s for testing purposes. Polling mode is not implemented in this example.
39
40* ``extras/libmemif/examples/icmp_responder-mt``
41
42Multi-thread example, very similar to icmpr-epoll. Packets are handled in threads assigned to specific queues. Slave mode only. Memif receive mode: polling (memif_rx_poll function), interrupt (memif_rx_interrupt function). Receive modes differ per queue.