diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-01-17 20:00:00 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-01-17 20:00:00 +0300 |
commit | 16cbf3c076a0aca6d47adaf3f719493674cf2363 (patch) | |
tree | e6530480020f62a2bdbf249988ec3e2a751d3927 /src/nxt_service.h | |
download | unit-16cbf3c076a0aca6d47adaf3f719493674cf2363.tar.gz unit-16cbf3c076a0aca6d47adaf3f719493674cf2363.tar.bz2 |
Initial version.
Diffstat (limited to 'src/nxt_service.h')
-rw-r--r-- | src/nxt_service.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/nxt_service.h b/src/nxt_service.h new file mode 100644 index 00000000..1484f73e --- /dev/null +++ b/src/nxt_service.h @@ -0,0 +1,30 @@ + +/* + * Copyright (C) Igor Sysoev + * Copyright (C) NGINX, Inc. + */ + +#ifndef _NXT_SERVICE_H_INCLUDED_ +#define _NXT_SERVICE_H_INCLUDED_ + + +typedef struct { + const char *type; + const char *name; + const void *service; +} nxt_service_t; + + +#define \ +nxt_service_is_module(s) \ + ((s)->type == NULL) + + +NXT_EXPORT nxt_array_t *nxt_services_init(nxt_mem_pool_t *mp); +NXT_EXPORT nxt_int_t nxt_service_add(nxt_array_t *services, + const nxt_service_t *service); +NXT_EXPORT const void *nxt_service_get(nxt_array_t *services, const char *type, + const char *name); + + +#endif /* _NXT_SERVICE_H_INCLUDED_ */ |