diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2017-08-03 02:11:34 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-08-11 02:50:51 +0000 |
commit | 543852a46ce107243ed92254bd88b87ca82bbd0b (patch) | |
tree | e9e1b95850dfcbdc116e0f6ee219c2e75cfff266 /extras/gdb | |
parent | 7faab8d3a571a272506eb463fc470b9dbe8a02a7 (diff) |
Add VPP Communications Library (VCL)
- VCL library
- client/server test application
- test script (make test integration tbd)
- gdb command file templates
- vppcom test config file
Change-Id: I21eab7aa09b4e5dc3412acf5c2eab07415c2fc0f
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'extras/gdb')
-rw-r--r-- | extras/gdb/gdb_cmdfile.vcl_client | 10 | ||||
-rw-r--r-- | extras/gdb/gdb_cmdfile.vcl_server | 10 | ||||
-rw-r--r-- | extras/gdb/gdb_cmdfile.vpp | 7 |
3 files changed, 27 insertions, 0 deletions
diff --git a/extras/gdb/gdb_cmdfile.vcl_client b/extras/gdb/gdb_cmdfile.vcl_client new file mode 100644 index 00000000000..a622f958723 --- /dev/null +++ b/extras/gdb/gdb_cmdfile.vcl_client @@ -0,0 +1,10 @@ +echo \n\n====== gdb_cmdfile.vppcom_client ======\n + +# Here are some interesting vppcom breakpoints... +# Uncomment them out to set during gdb init. +# +#b vppcom_session_connect +#b vppcom_session_write +#b vppcom_session_read +#b vl_api_connect_sock_t_handler +#b vl_api_connect_sock_reply_t_handler diff --git a/extras/gdb/gdb_cmdfile.vcl_server b/extras/gdb/gdb_cmdfile.vcl_server new file mode 100644 index 00000000000..8e441018916 --- /dev/null +++ b/extras/gdb/gdb_cmdfile.vcl_server @@ -0,0 +1,10 @@ +echo \n\n====== gdb_cmdfile.vppcom_server ======\n + +# Here are some interesting vppcom breakpoints... +# Uncomment them out to set during gdb init. +# +#b vppcom_session_accept +#b vppcom_session_write +#b vppcom_session_read +#b vl_api_connect_sock_t_handler +#b vl_api_connect_sock_reply_t_handler diff --git a/extras/gdb/gdb_cmdfile.vpp b/extras/gdb/gdb_cmdfile.vpp new file mode 100644 index 00000000000..a430ccb34eb --- /dev/null +++ b/extras/gdb/gdb_cmdfile.vpp @@ -0,0 +1,7 @@ +echo \n\n====== gdb_cmdfile.vpp ======\n + +# Here are some interesting vpp-api breakpoints... +# Uncomment them out to set during gdb init. +# +#b vl_api_connect_sock_t_handler +#b vl_api_connect_sock_reply_t_handler |