sssd_dbus_private.h revision f39d300e6b42ef3e86da6c4d3e5db68703023463
/*
Authors:
Simo Sorce <ssorce@redhat.com>
Stephen Gallagher <sgallagh@redhat.com>
Copyright (C) 2009 Red Hat
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 _SSSD_DBUS_PRIVATE_H_
#define _SSSD_DBUS_PRIVATE_H_
union dbus_conn_pointer {
};
enum dbus_conn_type {
};
struct sbus_interface_p;
struct sbus_watch_ctx;
struct sbus_connection {
struct tevent_context *ev;
enum dbus_conn_type type;
union dbus_conn_pointer dbus;
char *address;
int connection_type;
int disconnect;
void *pvt_data; /* Private data for this connection */
/* dbus tables and handlers */
struct sbus_interface_p *intf_list;
/* reconnect settings */
int retries;
int max_retries;
/* Private data needed to reinit after reconnection */
void *reconnect_pvt;
/* server related stuff */
struct sbus_interface *server_intf;
void *srv_init_data;
/* watches list */
struct sbus_watch_ctx *watch_list;
};
/* =Watches=============================================================== */
struct sbus_watch_ctx {
struct sbus_connection *conn;
int fd;
};
/* =Timeouts============================================================== */
struct sbus_timeout_ctx {
struct tevent_timer *te;
};
#endif /* _SSSD_DBUS_PRIVATE_H_ */