diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-21 07:43:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:14 -0500 |
commit | b7e1ea20dc873a753ff64653987130f03897a4e9 (patch) | |
tree | 67f37a1a19113c622dedf942f39b27ca994c1b05 /source4/include | |
parent | b45f4ebbb880e41abf86abb54264123f3edbde05 (diff) | |
download | samba-b7e1ea20dc873a753ff64653987130f03897a4e9.tar.gz samba-b7e1ea20dc873a753ff64653987130f03897a4e9.tar.bz2 samba-b7e1ea20dc873a753ff64653987130f03897a4e9.zip |
r1985: take advantage of the new talloc in a few more places
(This used to be commit 6ffdfd779936ce8c5ca49c5f444e8da2bbeee0a8)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/cli_context.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/source4/include/cli_context.h b/source4/include/cli_context.h index 9013d3d071..a2816e2cbb 100644 --- a/source4/include/cli_context.h +++ b/source4/include/cli_context.h @@ -63,8 +63,6 @@ struct smbcli_negotiate { /* this is the context for a SMB socket associated with the socket itself */ struct smbcli_socket { - TALLOC_CTX *mem_ctx; /* life of socket pool */ - /* when the reference count reaches zero then the socket is destroyed */ int reference_count; @@ -101,8 +99,6 @@ struct smbcli_options { /* this is the context for the client transport layer */ struct smbcli_transport { - TALLOC_CTX *mem_ctx; - /* when the reference count reaches zero then the transport is destroyed */ int reference_count; @@ -188,8 +184,6 @@ struct smbcli_transport { /* this is the context for the session layer */ struct smbcli_session { - TALLOC_CTX *mem_ctx; /* life of session */ - /* when the reference count reaches zero then the session is destroyed */ int reference_count; @@ -213,9 +207,6 @@ struct smbcli_session { smbcli_tree context: internal state for a tree connection. */ struct smbcli_tree { - /* life of tree tree */ - TALLOC_CTX *mem_ctx; - /* when the reference count reaches zero then the tree is destroyed */ int reference_count; @@ -296,7 +287,6 @@ struct smbcli_request { i.e. a single session on a single socket. */ struct smbcli_state { - TALLOC_CTX *mem_ctx; /* life of client pool */ struct smbcli_transport *transport; struct smbcli_session *session; struct smbcli_tree *tree; |