aboutsummaryrefslogtreecommitdiffstats
path: root/extras/libmemif/examples/common/common.h
diff options
context:
space:
mode:
authorMohsin Kazmi <sykazmi@cisco.com>2022-07-27 15:04:01 +0000
committerBeno�t Ganne <bganne@cisco.com>2022-08-29 07:05:23 +0000
commit6e284ef6ce66d3fa2fdd562dfe7e6ba65bd5a508 (patch)
treea6e647ffb5e6763746d1dfbd398d1285eb887ae1 /extras/libmemif/examples/common/common.h
parenta01be735f25a9a4596d3f67ef71a094e601e8b65 (diff)
libmemif: add support for custom buffer-size and headroom in icmp example app
Type: improvement Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com> Change-Id: I2bdaee7938a3747e3217d6901ec3c66f1ee3da61
Diffstat (limited to 'extras/libmemif/examples/common/common.h')
-rw-r--r--extras/libmemif/examples/common/common.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/extras/libmemif/examples/common/common.h b/extras/libmemif/examples/common/common.h
index ce4ead2d253..3538e39e23b 100644
--- a/extras/libmemif/examples/common/common.h
+++ b/extras/libmemif/examples/common/common.h
@@ -78,6 +78,10 @@ typedef struct memif_connection
uint8_t ip_addr[4];
/* interface hw address */
uint8_t hw_addr[6];
+ /* buffer size */
+ uint16_t buffer_size;
+ /* headroom size */
+ uint16_t headroom_size;
} memif_connection_t;
void print_version ();
@@ -113,4 +117,4 @@ int basic_packet_handler (memif_connection_t *conn);
/* ICMPv4 and ARP handler */
int icmp_packet_handler (memif_connection_t *conn);
-#endif /* COMMON_H */ \ No newline at end of file
+#endif /* COMMON_H */