diff options
author | Jakub Grajciar <jgrajcia@cisco.com> | 2018-08-20 14:26:32 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-08-30 12:35:46 +0000 |
commit | 93a5dd17232e42bea2fc9dcf59c652a9da31b2b3 (patch) | |
tree | 9f3c1b69bb96cc65353b468f8264204ca493913f /extras/libmemif/examples/icmp_responder/main.c | |
parent | 43b06063015abfa42bc9c5ab925cd6b7ea3cbf42 (diff) |
libmemif: external region support
region 0: descriptors
region 1: buffers (external)
Change-Id: Ia728967817b4c78bc00f8eed44606d0c5bc386b0
Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'extras/libmemif/examples/icmp_responder/main.c')
-rw-r--r-- | extras/libmemif/examples/icmp_responder/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/libmemif/examples/icmp_responder/main.c b/extras/libmemif/examples/icmp_responder/main.c index 5e78acd3537..fa7bcb9a636 100644 --- a/extras/libmemif/examples/icmp_responder/main.c +++ b/extras/libmemif/examples/icmp_responder/main.c @@ -395,7 +395,7 @@ main (int argc, char *argv[]) /* if valid callback is passed as argument, fd event polling will be done by user all file descriptors and events will be passed to user in this callback */ /* if callback is set to NULL libmemif will handle fd event polling */ - err = memif_init (NULL, APP_NAME, NULL, NULL); + err = memif_init (NULL, APP_NAME, NULL, NULL, NULL); if (err != MEMIF_ERR_SUCCESS) INFO ("memif_init: %s", memif_strerror (err)); |