aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/bfd/bfd.api
AgeCommit message (Expand)AuthorFilesLines
2019-09-04bfd: API cleanupJakub Grajciar1-44/+47
2018-10-02BFD: add get echo source API (VPP-1367)Matus Fabian1-0/+32
2018-01-23VPPAPIGEN: vppapigen replacement in Python PLY.Ole Troan1-1/+1
2017-10-09vppapigen: support per-file (major,minor,patch) version stampsDave Barach1-0/+2
2017-04-25"autoreply" flag: autogenerate standard xxx_reply_t messagesDave Barach1-121/+11
2017-03-02BFD: command line interfaceKlement Sekera1-27/+1
2017-02-26BFD: echo functionKlement Sekera1-12/+26
2017-02-08BFD: modify session parametersKlement Sekera1-0/+40
2017-02-02BFD: SHA1 authenticationKlement Sekera1-21/+186
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+205
(the "License"); ;;; you may not use this file except in compliance with the License. ;;; You may obtain a copy of the License at: ;;; ;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; ;;; 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. (require 'skeleton) (define-skeleton skel-plugin-cmakelists-text-fragment "Insert a plug-in 'CMakeLists.txt' skeleton " nil '(if (not (boundp 'plugin-name)) (setq plugin-name (read-string "Plugin name: "))) '(setq PLUGIN-NAME (upcase plugin-name)) " # Copyright (c) <current-year> <your-organization> # Licensed under the Apache License, Version 2.0 (the \"License\"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: # # http://www.apache.org/licenses/LICENSE-2.0 # # 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. add_vpp_plugin("plugin-name" SOURCES " plugin-name ".c node.c " plugin-name "_periodic.c " plugin-name ".h MULTIARCH_SOURCES node.c API_FILES " plugin-name".api INSTALL_HEADERS " plugin-name "_all_api_h.h " plugin-name "_msg_enum.h API_TEST_SOURCES " plugin-name "_test.c ) ")