diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-11-23 12:52:24 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-11-23 12:52:24 +0100 |
commit | 90ab8cf4258a25e8403465ed86296fc74405620d (patch) | |
tree | cf3b0846dff8fc4be9d991f810a9208c69705711 /include/base.h | |
parent | f3667d995e439a1d75fd9b56b29b610f3d877d8b (diff) |
Add SERVICE_CUSTOM for services managed by a module
Diffstat (limited to 'include/base.h')
-rw-r--r-- | include/base.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/base.h b/include/base.h index 8aa6269d3..c378afc1c 100644 --- a/include/base.h +++ b/include/base.h @@ -235,7 +235,9 @@ enum ServiceType { /** is a data processing provider (MD5, SQL) */ SERVICE_DATA, /** is an I/O hook provider (SSL) */ - SERVICE_IOHOOK + SERVICE_IOHOOK, + /** Service managed by a module */ + SERVICE_CUSTOM }; /** A structure defining something that a module can provide */ |