summaryrefslogtreecommitdiffstats
path: root/src/plugin.h
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-06-30 11:54:35 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-06-30 11:54:35 -0400
commitfb1a1a4523009eea9b22d98f8937009ea9378ece (patch)
tree65adec08a9dd8e49ed74f57c812217dee7ccd6ab /src/plugin.h
parentd9004caaf38a3e8e0a2a61f06acb466619ae4abf (diff)
downloadslapi-nis-fb1a1a4523009eea9b22d98f8937009ea9378ece.tar.gz
slapi-nis-fb1a1a4523009eea9b22d98f8937009ea9378ece.tar.xz
slapi-nis-fb1a1a4523009eea9b22d98f8937009ea9378ece.zip
- rename plugin.c,plugin.h to plug-nis.c,plug-nis.h
Diffstat (limited to 'src/plugin.h')
-rw-r--r--src/plugin.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/plugin.h b/src/plugin.h
deleted file mode 100644
index 970afd5..0000000
--- a/src/plugin.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright 2008 Red Hat, Inc.
- *
- * 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; version 2 of the License.
- *
- * 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, write to the
- *
- * Free Software Foundation, Inc.
- * 59 Temple Place, Suite 330
- * Boston, MA 02111-1307 USA
- *
- */
-
-#ifndef plugin_h
-#define plugin_h
-
-#include "wrap.h"
-
-struct request_info;
-struct securenet_info;
-
-struct plugin_state {
- struct wrapped_thread *tid;
- char *plugin_base;
- Slapi_ComponentId *plugin_identity;
- Slapi_PluginDesc *plugin_desc;
- int pmap_client_socket;
- int max_dgram_size, max_value_size;
- struct request_info *request_info;
- struct securenet_info *securenet_info;
- int n_listeners;
- struct {
- int fd, port, pf, type;
- } listener[4];
-};
-
-#endif