summaryrefslogtreecommitdiff
path: root/server/dbus/sssd_dbus.h
AgeCommit message (Collapse)AuthorFilesLines
2008-11-03Renaming sssd/server/dbus to sssd/server/sbus. Making necessary changes to ↵Stephen Gallagher1-86/+0
header includes and makefiles.
2008-11-03Refactoring dbus code. Also corrected one talloc allocation mistake for ↵Stephen Gallagher1-31/+29
sbus_dispatch.
2008-11-03Moved method handling into sssd_dbus_connection.c. Added support for ↵Stephen Gallagher1-7/+42
handling multiple D-BUS paths in a connection. Added support for per-connection method setup. Added support for per-connection specialized destructors. Added mandatory getIdentity call for all services connecting to the monitor. If they do not present an identity (expose the getIdentity method and respond with name and version), they are dropped immediately. Other minor fixes.
2008-11-03Fixed segfault issue when remote connection is lost.Stephen Gallagher1-0/+7
2008-11-03Initial memory cleanup workStephen Gallagher1-2/+0
2008-10-27D-BUS integration style changes.Simo Sorce1-0/+48
Rework interfaces a bit to simplify and uniform function names so that they use a well defined namespace (sssd_*). Simplify headers file, split them into a private and a public one only. Make static all file private functions. Rename sssd_dbus_client.c to sssd_dbus_connection.c to reflect it's function, as it is is used by both a server and a client. Introduce a function table to know where to dipatch messages. Fix coding style issues, and start pointing out where clean-up fucntions are missing.