1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

s3:nmbd: s/struct event_context/struct tevent_context

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Stefan Metzmacher 2013-02-18 09:58:40 +01:00 committed by Michael Adam
parent 99367d413a
commit 5743277ed6
4 changed files with 6 additions and 6 deletions

View File

@ -23,9 +23,9 @@
/* The following definitions come from lib/events.c */
struct pollfd;
struct timeval *get_timed_events_timeout(struct event_context *event_ctx,
struct timeval *get_timed_events_timeout(struct tevent_context *event_ctx,
struct timeval *to_ret);
void dump_event_list(struct event_context *event_ctx);
void dump_event_list(struct tevent_context *event_ctx);
struct tevent_context *s3_tevent_context_init(TALLOC_CTX *mem_ctx);
bool event_add_to_poll_args(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
@ -34,7 +34,7 @@ bool event_add_to_poll_args(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
bool run_events_poll(struct tevent_context *ev, int pollrtn,
struct pollfd *pfds, int num_pfds);
struct idle_event *event_add_idle(struct event_context *event_ctx,
struct idle_event *event_add_idle(struct tevent_context *event_ctx,
TALLOC_CTX *mem_ctx,
struct timeval interval,
const char *name,

View File

@ -43,7 +43,7 @@ bool found_lm_clients = False;
time_t StartupTime = 0;
struct event_context *nmbd_event_context(void)
struct tevent_context *nmbd_event_context(void)
{
return server_event_context();
}

View File

@ -56,7 +56,7 @@ static bool delay_logon(const char *peer_name, const char *peer_addr)
return list_match(delay_list, (const char *)peer, client_match);
}
static void delayed_init_logon_handler(struct event_context *event_ctx,
static void delayed_init_logon_handler(struct tevent_context *event_ctx,
struct timed_event *te,
struct timeval now,
void *private_data)

View File

@ -36,7 +36,7 @@ void kill_async_dns_child(void);
/* The following definitions come from nmbd/nmbd.c */
struct event_context *nmbd_event_context(void);
struct tevent_context *nmbd_event_context(void);
/* The following definitions come from nmbd/nmbd_become_dmb.c */