diff options
author | Volker Lendecke <vl@samba.org> | 2009-02-01 12:03:31 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-02-01 14:34:23 +0100 |
commit | 53394980ad7dc09af4412a6c4ee75241798b0e7c (patch) | |
tree | 1bdfb1fb7ed75738afdb46825dc0c75d54027a9c /source3/include | |
parent | 3cd8c121dc27739a9a70bf47e32dcd19e35ddf14 (diff) | |
download | samba-53394980ad7dc09af4412a6c4ee75241798b0e7c.tar.gz samba-53394980ad7dc09af4412a6c4ee75241798b0e7c.tar.bz2 samba-53394980ad7dc09af4412a6c4ee75241798b0e7c.zip |
Replace pipe names in pipes_struct by ndr_syntax_id
This was mainly used for debugging output
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ntdomain.h | 3 | ||||
-rw-r--r-- | source3/include/proto.h | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index 3f501550da..2d6a358391 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -214,8 +214,7 @@ typedef struct pipes_struct { struct auth_serversupplied_info *server_info; - fstring name; - fstring pipe_srv_name; + struct ndr_syntax_id syntax; /* linked list of rpc dispatch tables associated with the open rpc contexts */ diff --git a/source3/include/proto.h b/source3/include/proto.h index 6a97d81a61..c97adaa1c0 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6271,7 +6271,8 @@ NTSTATUS _eventlog_read_eventlog( pipes_struct * p, /* The following definitions come from rpc_server/srv_lsa_hnd.c */ -bool init_pipe_handle_list(pipes_struct *p, const char *pipe_name); +bool init_pipe_handle_list(pipes_struct *p, + const struct ndr_syntax_id *syntax); bool create_policy_hnd(pipes_struct *p, POLICY_HND *hnd, void *data_ptr); bool find_policy_by_hnd(pipes_struct *p, POLICY_HND *hnd, void **data_p); bool close_policy_hnd(pipes_struct *p, POLICY_HND *hnd); @@ -6294,7 +6295,7 @@ NTSTATUS rpc_srv_register(int version, const char *clnt, const char *srv, const struct ndr_interface_table *iface, const struct api_struct *cmds, int size); -bool is_known_pipename(const char *cli_filename); +bool is_known_pipename(const char *cli_filename, struct ndr_syntax_id *syntax); bool api_pipe_bind_req(pipes_struct *p, prs_struct *rpc_in_p); bool api_pipe_alter_context(pipes_struct *p, prs_struct *rpc_in_p); bool api_pipe_ntlmssp_auth_process(pipes_struct *p, prs_struct *rpc_in, |