meta: replace systemd and ldd with herdd and nsd

This commit is contained in:
2026-03-23 18:15:38 +00:00
parent d4d3ab13f4
commit bf5052fd3d
12 changed files with 105 additions and 34 deletions

17
services/herdd/service.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef SERVICE_H_
#define SERVICE_H_
#define SVC_DESCRIPTION_MAX 64
enum service_role {
SVC_ROLE_NONE = 0x00u,
SVC_ROLE_NAMESPACE_PROVIDER = 0x01u,
};
struct service {
char s_description[SVC_DESCRIPTION_MAX];
enum service_role s_roles;
char *s_exec;
};
#endif