summaryrefslogtreecommitdiffstats
path: root/src/responder/nss/nsssrv_services.h
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-01-21 16:16:41 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-01-27 09:02:01 -0500
commit8c3a4809b3420657289b42f028a1c9019b112991 (patch)
tree89b11a12d0c6df6e61eb950baddecf5790b39771 /src/responder/nss/nsssrv_services.h
parent91034cafa31fcd8a625e7c8ad35029132ac40970 (diff)
downloadsssd_unused-8c3a4809b3420657289b42f028a1c9019b112991.tar.gz
sssd_unused-8c3a4809b3420657289b42f028a1c9019b112991.tar.xz
sssd_unused-8c3a4809b3420657289b42f028a1c9019b112991.zip
NSS: Add getservbyname and getservbyport support to the NSS Responder
Diffstat (limited to 'src/responder/nss/nsssrv_services.h')
-rw-r--r--src/responder/nss/nsssrv_services.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/responder/nss/nsssrv_services.h b/src/responder/nss/nsssrv_services.h
new file mode 100644
index 00000000..a334ddc6
--- /dev/null
+++ b/src/responder/nss/nsssrv_services.h
@@ -0,0 +1,33 @@
+/*
+ SSSD
+
+ Authors:
+ Stephen Gallagher <sgallagh@redhat.com>
+
+ Copyright (C) 2012 Red Hat
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef NSSSRV_SERVICES_H_
+#define NSSSRV_SERVICES_H_
+
+int nss_cmd_getservbyname(struct cli_ctx *cctx);
+int nss_cmd_getservbyport(struct cli_ctx *cctx);
+
+int nss_cmd_setservent(struct cli_ctx *cctx);
+int nss_cmd_getservent(struct cli_ctx *cctx);
+int nss_cmd_endservent(struct cli_ctx *cctx);
+
+#endif /* NSSSRV_SERVICES_H_ */