registry.h (312B)
1 #ifndef __LINKD_DATAPLANE_REGISTRY_H__ 2 #define __LINKD_DATAPLANE_REGISTRY_H__ 3 4 #include "dataplane.h" 5 6 // Add a backend to the selection table. Rejects backends whose ABI does not 7 // match or which omit mandatory entry points. 8 int dp_register(const struct dp_ops *ops); 9 10 #endif // __LINKD_DATAPLANE_REGISTRY_H__