summaryrefslogtreecommitdiffstats
path: root/src/vlibapi/api_common.h
AgeCommit message (Expand)AuthorFilesLines
2018-12-13API: Use string type instead of u8.Ole Troan1-0/+1
2018-10-02PAPI: Use UNIX domain sockets instead of shared memoryOle Troan1-1/+1
2018-08-03svm: add support for eventfd signaling to queueFlorin Coras1-3/+0
2018-06-05VPP API: Memory traceOle Troan1-0/+2
2018-01-25session: add support for memfd segmentsFlorin Coras1-0/+1
2018-01-09api: refactor vlibmemoryFlorin Coras1-6/+6
2017-10-09vppapigen: support per-file (major,minor,patch) version stampsDave Barach1-0/+11
2017-10-05Clean up "show api ring" debug CLIDave Barach1-1/+4
2017-10-03Repair vlib API socket serverDave Barach1-0/+9
2017-09-27VPP-990 remove registered handler if control ping failsv18.01-rc0Matej Perina1-0/+1
2017-09-25Add binary API documentationDave Barach1-70/+122
2017-09-13API message table inspection utilitiesDave Barach1-0/+3
2017-09-11Recombine diags and minimum barrier open time changes (VPP-968)Colin Tregenza Dancer1-0/+6
2017-09-09move unix_file_* code to vppinfraDamjan Marion1-1/+1
2017-07-01Refactor API message handling codeKlement Sekera1-0/+268
# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # VPP API C wrapper extension # lib_LTLIBRARIES += libvppapiclient.la libvppapiclient_la_SOURCES = \ vpp-api/client/client.c \ vpp-api/client/libvppapiclient.map libvppapiclient_la_LIBADD = \ -lpthread -lm -lrt libvppapiclient_la_LDFLAGS = \ -Wl,-L$(top_builddir)/.libs,--whole-archive,-l:libsvm.a,-l:libvppinfra.a,-l:libvlibmemoryclient.a,--no-whole-archive \ -Wl,--version-script=$(srcdir)/vpp-api/client/libvppapiclient.map,-lrt libvppapiclient_la_DEPENDENCIES = libvppinfra.la libvlibmemoryclient.la libsvm.la libvppapiclient_la_CPPFLAGS = nobase_include_HEADERS += vpp-api/client/vppapiclient.h # # Test client # if ENABLE_TESTS noinst_PROGRAMS += vac_test vac_test_SOURCES = vpp-api/client/test.c vac_test_LDADD = \ $(builddir)/libvppapiclient.la \ -lpthread -lm -lrt endif # vi:syntax=automake