diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-06-28 08:39:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:48 -0500 |
commit | 8bf537d119be3e1823ad41b8b8af0d163251b1c5 (patch) | |
tree | bbacd6ecb45e1a1cb095f389a21d39b2c426196e /source4/include | |
parent | 4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f (diff) | |
download | samba-8bf537d119be3e1823ad41b8b8af0d163251b1c5.tar.gz samba-8bf537d119be3e1823ad41b8b8af0d163251b1c5.tar.bz2 samba-8bf537d119be3e1823ad41b8b8af0d163251b1c5.zip |
r1280: rename struct request_context to smbsrv_request
metze
(This used to be commit a85d2db5826a84b812ea5162a11f54edd25f74e3)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/include/context.h b/source4/include/context.h index 2df68b96b9..93f8552d86 100644 --- a/source4/include/context.h +++ b/source4/include/context.h @@ -79,7 +79,7 @@ struct smbsrv_tcon { /* the context for a single SMB request. This is passed to any request-context functions */ -struct request_context { +struct smbsrv_request { /* the server_context contains all context specific to this SMB socket */ struct smbsrv_context *smb_ctx; @@ -130,7 +130,7 @@ struct request_context { end not the backend. The backend must not change it. */ struct { - void (*send_fn)(struct request_context *); + void (*send_fn)(struct smbsrv_request *); void *private; NTSTATUS status; } async; @@ -313,7 +313,7 @@ struct pending_request { struct pending_request *next, *prev; /* the request itself - needs to be freed */ - struct request_context *request; + struct smbsrv_request *request; }; /* the timers context contains info on when we last did various |