From 118f3edd27f5adacc1da636ed05b33f04999584f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 29 Jun 2004 07:40:14 +0000 Subject: r1291: rename struct smbsrv_context to smbsrv_connection because this is the connection state per transport layer (tcp) connection I also moved the substructs directly into smbsrv_connection, because they don't need a struct name and we should allway pass the complete smbsrv_connection struct into functions metze (This used to be commit 60f823f201fcedf5473008e8453a6351e73a92c7) --- source4/smbd/process_standard.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/smbd/process_standard.c') diff --git a/source4/smbd/process_standard.c b/source4/smbd/process_standard.c index 84166196d5..2ee486e1d2 100644 --- a/source4/smbd/process_standard.c +++ b/source4/smbd/process_standard.c @@ -115,7 +115,7 @@ static void accept_rpc_connection(struct event_context *ev, struct fd_event *fde } /* called when a SMB connection goes down */ -static void terminate_connection(struct smbsrv_context *server, const char *reason) +static void terminate_connection(struct smbsrv_connection *server, const char *reason) { server_terminate(server); /* terminate this process */ @@ -132,10 +132,10 @@ static void terminate_rpc_connection(void *r, const char *reason) static int get_id(struct smbsrv_request *req) { - return (int)req->smb_ctx->pid; + return (int)req->smb_conn->pid; } -static void standard_exit_server(struct smbsrv_context *smb, const char *reason) +static void standard_exit_server(struct smbsrv_connection *smb, const char *reason) { DEBUG(1,("standard_exit_server: reason[%s]\n",reason)); } -- cgit