1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Add subreq and status to kcc_service struct

The subreq and status fields in the kcc_service struct
are added for execution management of the external samba_kcc
python script.

Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
Dave Craft 2011-12-04 11:04:49 -06:00 committed by Andrew Tridgell
parent b58cb7ea93
commit 0a181217bd

View File

@ -77,14 +77,21 @@ struct kccsrv_service {
/* here we have a reference to the timed event the schedules the periodic stuff */
struct tevent_timer *te;
/* samba_runcmd_send service for samba_kcc */
struct tevent_req *subreq;
/* return status of samba_kcc */
NTSTATUS status;
} periodic;
time_t last_deleted_check;
bool am_rodc;
/* run new intra-site topology code */
bool intrasite_code;
/* run new samba_kcc topology generator code */
bool samba_kcc_code;
};
struct kcc_connection_list;