aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/dns
AgeCommit message (Expand)AuthorFilesLines
2020-12-14misc: move to new pool_foreach macrosDamjan Marion1-6/+6
2020-11-25dns: use correct per-thread vlib_mainBenoît Ganne4-60/+63
2020-11-25dns: fix double-unlockBenoît Ganne1-12/+0
2020-11-25api: vat2 and json autogeneration for api messagesOle Troan2-57/+4
2020-10-21misc: minimize dependencies on udp.hFlorin Coras1-1/+1
2020-06-17docs: add more FEATURE.yaml documentationDave Barach1-0/+18
2020-06-16misc: fix sonarclound warningsDave Barach1-0/+6
2020-02-14vrrp dns: fix coverity warningsDave Barach1-1/+1
2019-12-10api: multiple connections per processDave Barach1-1/+1
2019-11-15tests: Remove the unrequired VPP IP address/prefix class wrappersNeale Ranns1-2/+1
2019-11-05misc: Fix python scripts shebang lineRenato Botelho do Couto1-1/+1
2019-10-30dns: fix typo in counterPaul Vinciguerra1-1/+1
2019-10-22tests: python3 changes for dns testssnaramre1-1/+1
2019-09-30dns: fix non-NULL terminated C-stringBenoît Ganne1-0/+2
2019-09-27dns: remove api boilerplateOle Troan7-245/+14
2019-08-22dns: fix trivial multi-thread deadlockDave Barach3-12/+17
2019-08-22dns: make the dns name resolver a pluginDave Barach12-0/+5137
ee the License for the specific language governing permissions and * limitations under the License. */ #ifndef __IP_NEIGHBOR_WATCH_H__ #define __IP_NEIGHBOR_WATCH_H__ #include <vnet/ip-neighbor/ip_neighbor_types.h> extern void ip_neighbor_watch (const ip_address_t * ip, u32 sw_if_index, const ip_neighbor_watcher_t * watch); extern void ip_neighbor_unwatch (const ip_address_t * ip, u32 sw_if_index, const ip_neighbor_watcher_t * watch); extern void ip_neighbor_publish (index_t ipni, ip_neighbor_event_flags_t flags); #endif /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */