summaryrefslogtreecommitdiffstats
path: root/src/plugin.h
blob: 230bad17943af3c5d2b08c2cae5ad3afb05e6c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef plugin_h
#define plugin_h

struct plugin_state {
	pthread_t tid;
	char *plugin_base;
	Slapi_ComponentId *plugin_identity;
	Slapi_PluginDesc *plugin_desc;
	int pmap_client_socket;
	int n_listeners;
	struct {
		int fd, port, pf, type;
	} listener[4];
};

#endif