s4:torture: FinderInfo conversion test with AppleDouble without xattr data
[Samba.git] / source3 / rpc_server / rpc_ncacn_np.h
blob9ba58644ec0588343bf62a369fd46b67c321992a
1 /*
2 Unix SMB/Netbios implementation.
3 RPC Server Headers
4 Copyright (C) Simo Sorce 2010
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _RPC_NCACN_NP_H_
21 #define _RPC_NCACN_NP_H_
23 struct dcerpc_binding_handle;
24 struct ndr_interface_table;
25 struct tsocket_address;
27 struct npa_state {
28 struct tstream_context *stream;
30 struct tevent_queue *read_queue;
31 struct tevent_queue *write_queue;
33 uint64_t allocation_size;
34 uint16_t device_state;
35 uint16_t file_type;
37 void *private_data;
40 NTSTATUS make_external_rpc_pipe(TALLOC_CTX *mem_ctx,
41 const char *pipe_name,
42 const struct tsocket_address *remote_client_address,
43 const struct tsocket_address *local_server_address,
44 const struct auth_session_info *session_info,
45 struct npa_state **pnpa);
47 NTSTATUS make_internal_rpc_pipe_socketpair(
48 TALLOC_CTX *mem_ctx,
49 struct tevent_context *ev_ctx,
50 struct messaging_context *msg_ctx,
51 const char *pipe_name,
52 const struct ndr_syntax_id *syntax,
53 const struct tsocket_address *remote_address,
54 const struct tsocket_address *local_address,
55 const struct auth_session_info *session_info,
56 struct npa_state **pnpa);
58 struct np_proxy_state {
59 uint16_t file_type;
60 uint16_t device_state;
61 uint64_t allocation_size;
62 struct tstream_context *npipe;
63 struct tevent_queue *read_queue;
64 struct tevent_queue *write_queue;
67 struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
68 const struct ndr_syntax_id *syntax,
69 const struct tsocket_address *remote_address,
70 const struct tsocket_address *local_address,
71 const struct auth_session_info *session_info,
72 struct messaging_context *msg_ctx);
73 struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
74 const char *pipe_name,
75 const struct tsocket_address *remote_client_address,
76 const struct tsocket_address *local_server_address,
77 const struct auth_session_info *session_info);
78 NTSTATUS rpcint_binding_handle(TALLOC_CTX *mem_ctx,
79 const struct ndr_interface_table *ndr_table,
80 const struct tsocket_address *remote_address,
81 const struct tsocket_address *local_address,
82 const struct auth_session_info *session_info,
83 struct messaging_context *msg_ctx,
84 struct dcerpc_binding_handle **binding_handle);
85 NTSTATUS rpc_pipe_open_interface(TALLOC_CTX *mem_ctx,
86 const struct ndr_interface_table *table,
87 const struct auth_session_info *session_info,
88 const struct tsocket_address *remote_address,
89 const struct tsocket_address *local_address,
90 struct messaging_context *msg_ctx,
91 struct rpc_pipe_client **cli_pipe);
93 NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx,
94 const struct ndr_interface_table *ndr_table,
95 const struct auth_session_info *session_info,
96 const struct tsocket_address *remote_address,
97 const struct tsocket_address *local_address,
98 struct messaging_context *msg_ctx,
99 struct rpc_pipe_client **presult);
101 #endif /* _RPC_NCACN_NP_H_ */