1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-26 21:57:41 +03:00

s4:librpc: make 'struct dcerpc_pipe_connect' private

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2013-12-04 14:28:11 +01:00
parent 27d0d32105
commit 383ba3dacf
2 changed files with 10 additions and 11 deletions

View File

@ -36,12 +36,14 @@ struct tevent_context;
struct tevent_req;
struct dcerpc_binding_handle;
struct tstream_context;
struct ndr_interface_table;
/*
this defines a generic security context for signed/sealed dcerpc pipes.
*/
struct dcecli_connection;
struct gensec_settings;
struct cli_credentials;
struct dcecli_security {
struct dcerpc_auth *auth_info;
struct gensec_security *generic_state;
@ -137,17 +139,6 @@ struct dcerpc_pipe {
/* default timeout for all rpc requests, in seconds */
#define DCERPC_REQUEST_TIMEOUT 60
struct dcerpc_pipe_connect {
struct dcerpc_pipe *pipe;
struct dcerpc_binding *binding;
const char *pipe_name;
const struct ndr_interface_table *interface;
struct cli_credentials *creds;
struct resolve_context *resolve_ctx;
};
struct epm_tower;
struct epm_floor;

View File

@ -36,6 +36,14 @@
#include "param/param.h"
#include "libcli/resolve/resolve.h"
struct dcerpc_pipe_connect {
struct dcerpc_pipe *pipe;
struct dcerpc_binding *binding;
const char *pipe_name;
const struct ndr_interface_table *interface;
struct cli_credentials *creds;
struct resolve_context *resolve_ctx;
};
struct pipe_np_smb_state {
struct smb_composite_connect conn;