From 8aa96566a96413384b7c8af0143c4ed1af100492 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 28 Apr 2010 09:51:12 -0400 Subject: s3-rpc_server: Created a per connection spoolss pipe. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This way all code can reuse the same connection to spoolss and not have to deal with the creation of a new pipe all over the code every time we need to ask a service off spoolss. Signed-off-by: Günther Deschner --- source3/include/smb.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/include/smb.h') diff --git a/source3/include/smb.h b/source3/include/smb.h index 1ceb54b792..a93caa7bf1 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -592,6 +592,9 @@ typedef struct connection_struct { struct dfree_cached_info *dfree_info; struct trans_state *pending_trans; struct notify_context *notify_ctx; + + struct rpc_pipe_client *spoolss_pipe; + } connection_struct; struct current_user { -- cgit