From 0798d54b4fc28be881e2c4012663b1461bc85ba7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 3 Feb 2005 11:25:52 +0000 Subject: r5195: most events don't need the time of the event, so save a gettimeofday() call and just use timeval_current() when its actually needed (This used to be commit 236403cc4dc2924ed6a898acae0bb44cc1688dcc) --- source4/smbd/service_stream.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/smbd/service_stream.h') diff --git a/source4/smbd/service_stream.h b/source4/smbd/service_stream.h index b9d4d4cc771..3ae71074195 100644 --- a/source4/smbd/service_stream.h +++ b/source4/smbd/service_stream.h @@ -52,6 +52,6 @@ struct stream_server_ops { /* the name of the server_service */ const char *name; void (*accept_connection)(struct stream_connection *); - void (*recv_handler)(struct stream_connection *, struct timeval, uint16_t); - void (*send_handler)(struct stream_connection *, struct timeval, uint16_t); + void (*recv_handler)(struct stream_connection *, uint16_t); + void (*send_handler)(struct stream_connection *, uint16_t); }; -- cgit