meta: replace systemd and ldd with herdd and nsd
This commit is contained in:
17
services/herdd/service.h
Normal file
17
services/herdd/service.h
Normal 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
|
||||
Reference in New Issue
Block a user