/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- ndr_push_initshutdown_Init
- ndr_pull_initshutdown_Init
- ndr_print_initshutdown_Init
- ndr_push_initshutdown_Abort
- ndr_pull_initshutdown_Abort
- ndr_print_initshutdown_Abort
- ndr_push_initshutdown_InitEx
- ndr_pull_initshutdown_InitEx
- ndr_print_initshutdown_InitEx
1 /* parser auto-generated by pidl */
2
3 #include "includes.h"
4 #include "../librpc/gen_ndr/ndr_initshutdown.h"
5
6 #include "librpc/gen_ndr/ndr_lsa.h"
7 static enum ndr_err_code ndr_push_initshutdown_Init(struct ndr_push *ndr, int flags, const struct initshutdown_Init *r)
/* [<][>][^][v][top][bottom][index][help] */
8 {
9 if (flags & NDR_IN) {
10 NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.hostname));
11 if (r->in.hostname) {
12 NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, *r->in.hostname));
13 }
14 NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.message));
15 if (r->in.message) {
16 NDR_CHECK(ndr_push_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, r->in.message));
17 }
18 NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.timeout));
19 NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, r->in.force_apps));
20 NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, r->in.do_reboot));
21 }
22 if (flags & NDR_OUT) {
23 NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
24 }
25 return NDR_ERR_SUCCESS;
26 }
27
28 static enum ndr_err_code ndr_pull_initshutdown_Init(struct ndr_pull *ndr, int flags, struct initshutdown_Init *r)
/* [<][>][^][v][top][bottom][index][help] */
29 {
30 uint32_t _ptr_hostname;
31 uint32_t _ptr_message;
32 TALLOC_CTX *_mem_save_hostname_0;
33 TALLOC_CTX *_mem_save_message_0;
34 if (flags & NDR_IN) {
35 NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_hostname));
36 if (_ptr_hostname) {
37 NDR_PULL_ALLOC(ndr, r->in.hostname);
38 } else {
39 r->in.hostname = NULL;
40 }
41 if (r->in.hostname) {
42 _mem_save_hostname_0 = NDR_PULL_GET_MEM_CTX(ndr);
43 NDR_PULL_SET_MEM_CTX(ndr, r->in.hostname, 0);
44 NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, r->in.hostname));
45 NDR_PULL_SET_MEM_CTX(ndr, _mem_save_hostname_0, 0);
46 }
47 NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_message));
48 if (_ptr_message) {
49 NDR_PULL_ALLOC(ndr, r->in.message);
50 } else {
51 r->in.message = NULL;
52 }
53 if (r->in.message) {
54 _mem_save_message_0 = NDR_PULL_GET_MEM_CTX(ndr);
55 NDR_PULL_SET_MEM_CTX(ndr, r->in.message, 0);
56 NDR_CHECK(ndr_pull_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, r->in.message));
57 NDR_PULL_SET_MEM_CTX(ndr, _mem_save_message_0, 0);
58 }
59 NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.timeout));
60 NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, &r->in.force_apps));
61 NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, &r->in.do_reboot));
62 }
63 if (flags & NDR_OUT) {
64 NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
65 }
66 return NDR_ERR_SUCCESS;
67 }
68
69 _PUBLIC_ void ndr_print_initshutdown_Init(struct ndr_print *ndr, const char *name, int flags, const struct initshutdown_Init *r)
/* [<][>][^][v][top][bottom][index][help] */
70 {
71 ndr_print_struct(ndr, name, "initshutdown_Init");
72 ndr->depth++;
73 if (flags & NDR_SET_VALUES) {
74 ndr->flags |= LIBNDR_PRINT_SET_VALUES;
75 }
76 if (flags & NDR_IN) {
77 ndr_print_struct(ndr, "in", "initshutdown_Init");
78 ndr->depth++;
79 ndr_print_ptr(ndr, "hostname", r->in.hostname);
80 ndr->depth++;
81 if (r->in.hostname) {
82 ndr_print_uint16(ndr, "hostname", *r->in.hostname);
83 }
84 ndr->depth--;
85 ndr_print_ptr(ndr, "message", r->in.message);
86 ndr->depth++;
87 if (r->in.message) {
88 ndr_print_lsa_StringLarge(ndr, "message", r->in.message);
89 }
90 ndr->depth--;
91 ndr_print_uint32(ndr, "timeout", r->in.timeout);
92 ndr_print_uint8(ndr, "force_apps", r->in.force_apps);
93 ndr_print_uint8(ndr, "do_reboot", r->in.do_reboot);
94 ndr->depth--;
95 }
96 if (flags & NDR_OUT) {
97 ndr_print_struct(ndr, "out", "initshutdown_Init");
98 ndr->depth++;
99 ndr_print_WERROR(ndr, "result", r->out.result);
100 ndr->depth--;
101 }
102 ndr->depth--;
103 }
104
105 static enum ndr_err_code ndr_push_initshutdown_Abort(struct ndr_push *ndr, int flags, const struct initshutdown_Abort *r)
/* [<][>][^][v][top][bottom][index][help] */
106 {
107 if (flags & NDR_IN) {
108 NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.server));
109 if (r->in.server) {
110 NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, *r->in.server));
111 }
112 }
113 if (flags & NDR_OUT) {
114 NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
115 }
116 return NDR_ERR_SUCCESS;
117 }
118
119 static enum ndr_err_code ndr_pull_initshutdown_Abort(struct ndr_pull *ndr, int flags, struct initshutdown_Abort *r)
/* [<][>][^][v][top][bottom][index][help] */
120 {
121 uint32_t _ptr_server;
122 TALLOC_CTX *_mem_save_server_0;
123 if (flags & NDR_IN) {
124 NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_server));
125 if (_ptr_server) {
126 NDR_PULL_ALLOC(ndr, r->in.server);
127 } else {
128 r->in.server = NULL;
129 }
130 if (r->in.server) {
131 _mem_save_server_0 = NDR_PULL_GET_MEM_CTX(ndr);
132 NDR_PULL_SET_MEM_CTX(ndr, r->in.server, 0);
133 NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, r->in.server));
134 NDR_PULL_SET_MEM_CTX(ndr, _mem_save_server_0, 0);
135 }
136 }
137 if (flags & NDR_OUT) {
138 NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
139 }
140 return NDR_ERR_SUCCESS;
141 }
142
143 _PUBLIC_ void ndr_print_initshutdown_Abort(struct ndr_print *ndr, const char *name, int flags, const struct initshutdown_Abort *r)
/* [<][>][^][v][top][bottom][index][help] */
144 {
145 ndr_print_struct(ndr, name, "initshutdown_Abort");
146 ndr->depth++;
147 if (flags & NDR_SET_VALUES) {
148 ndr->flags |= LIBNDR_PRINT_SET_VALUES;
149 }
150 if (flags & NDR_IN) {
151 ndr_print_struct(ndr, "in", "initshutdown_Abort");
152 ndr->depth++;
153 ndr_print_ptr(ndr, "server", r->in.server);
154 ndr->depth++;
155 if (r->in.server) {
156 ndr_print_uint16(ndr, "server", *r->in.server);
157 }
158 ndr->depth--;
159 ndr->depth--;
160 }
161 if (flags & NDR_OUT) {
162 ndr_print_struct(ndr, "out", "initshutdown_Abort");
163 ndr->depth++;
164 ndr_print_WERROR(ndr, "result", r->out.result);
165 ndr->depth--;
166 }
167 ndr->depth--;
168 }
169
170 static enum ndr_err_code ndr_push_initshutdown_InitEx(struct ndr_push *ndr, int flags, const struct initshutdown_InitEx *r)
/* [<][>][^][v][top][bottom][index][help] */
171 {
172 if (flags & NDR_IN) {
173 NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.hostname));
174 if (r->in.hostname) {
175 NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, *r->in.hostname));
176 }
177 NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.message));
178 if (r->in.message) {
179 NDR_CHECK(ndr_push_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, r->in.message));
180 }
181 NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.timeout));
182 NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, r->in.force_apps));
183 NDR_CHECK(ndr_push_uint8(ndr, NDR_SCALARS, r->in.do_reboot));
184 NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.reason));
185 }
186 if (flags & NDR_OUT) {
187 NDR_CHECK(ndr_push_WERROR(ndr, NDR_SCALARS, r->out.result));
188 }
189 return NDR_ERR_SUCCESS;
190 }
191
192 static enum ndr_err_code ndr_pull_initshutdown_InitEx(struct ndr_pull *ndr, int flags, struct initshutdown_InitEx *r)
/* [<][>][^][v][top][bottom][index][help] */
193 {
194 uint32_t _ptr_hostname;
195 uint32_t _ptr_message;
196 TALLOC_CTX *_mem_save_hostname_0;
197 TALLOC_CTX *_mem_save_message_0;
198 if (flags & NDR_IN) {
199 NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_hostname));
200 if (_ptr_hostname) {
201 NDR_PULL_ALLOC(ndr, r->in.hostname);
202 } else {
203 r->in.hostname = NULL;
204 }
205 if (r->in.hostname) {
206 _mem_save_hostname_0 = NDR_PULL_GET_MEM_CTX(ndr);
207 NDR_PULL_SET_MEM_CTX(ndr, r->in.hostname, 0);
208 NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, r->in.hostname));
209 NDR_PULL_SET_MEM_CTX(ndr, _mem_save_hostname_0, 0);
210 }
211 NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_message));
212 if (_ptr_message) {
213 NDR_PULL_ALLOC(ndr, r->in.message);
214 } else {
215 r->in.message = NULL;
216 }
217 if (r->in.message) {
218 _mem_save_message_0 = NDR_PULL_GET_MEM_CTX(ndr);
219 NDR_PULL_SET_MEM_CTX(ndr, r->in.message, 0);
220 NDR_CHECK(ndr_pull_lsa_StringLarge(ndr, NDR_SCALARS|NDR_BUFFERS, r->in.message));
221 NDR_PULL_SET_MEM_CTX(ndr, _mem_save_message_0, 0);
222 }
223 NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.timeout));
224 NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, &r->in.force_apps));
225 NDR_CHECK(ndr_pull_uint8(ndr, NDR_SCALARS, &r->in.do_reboot));
226 NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.reason));
227 }
228 if (flags & NDR_OUT) {
229 NDR_CHECK(ndr_pull_WERROR(ndr, NDR_SCALARS, &r->out.result));
230 }
231 return NDR_ERR_SUCCESS;
232 }
233
234 _PUBLIC_ void ndr_print_initshutdown_InitEx(struct ndr_print *ndr, const char *name, int flags, const struct initshutdown_InitEx *r)
/* [<][>][^][v][top][bottom][index][help] */
235 {
236 ndr_print_struct(ndr, name, "initshutdown_InitEx");
237 ndr->depth++;
238 if (flags & NDR_SET_VALUES) {
239 ndr->flags |= LIBNDR_PRINT_SET_VALUES;
240 }
241 if (flags & NDR_IN) {
242 ndr_print_struct(ndr, "in", "initshutdown_InitEx");
243 ndr->depth++;
244 ndr_print_ptr(ndr, "hostname", r->in.hostname);
245 ndr->depth++;
246 if (r->in.hostname) {
247 ndr_print_uint16(ndr, "hostname", *r->in.hostname);
248 }
249 ndr->depth--;
250 ndr_print_ptr(ndr, "message", r->in.message);
251 ndr->depth++;
252 if (r->in.message) {
253 ndr_print_lsa_StringLarge(ndr, "message", r->in.message);
254 }
255 ndr->depth--;
256 ndr_print_uint32(ndr, "timeout", r->in.timeout);
257 ndr_print_uint8(ndr, "force_apps", r->in.force_apps);
258 ndr_print_uint8(ndr, "do_reboot", r->in.do_reboot);
259 ndr_print_uint32(ndr, "reason", r->in.reason);
260 ndr->depth--;
261 }
262 if (flags & NDR_OUT) {
263 ndr_print_struct(ndr, "out", "initshutdown_InitEx");
264 ndr->depth++;
265 ndr_print_WERROR(ndr, "result", r->out.result);
266 ndr->depth--;
267 }
268 ndr->depth--;
269 }
270
271 static const struct ndr_interface_call initshutdown_calls[] = {
272 {
273 "initshutdown_Init",
274 sizeof(struct initshutdown_Init),
275 (ndr_push_flags_fn_t) ndr_push_initshutdown_Init,
276 (ndr_pull_flags_fn_t) ndr_pull_initshutdown_Init,
277 (ndr_print_function_t) ndr_print_initshutdown_Init,
278 false,
279 },
280 {
281 "initshutdown_Abort",
282 sizeof(struct initshutdown_Abort),
283 (ndr_push_flags_fn_t) ndr_push_initshutdown_Abort,
284 (ndr_pull_flags_fn_t) ndr_pull_initshutdown_Abort,
285 (ndr_print_function_t) ndr_print_initshutdown_Abort,
286 false,
287 },
288 {
289 "initshutdown_InitEx",
290 sizeof(struct initshutdown_InitEx),
291 (ndr_push_flags_fn_t) ndr_push_initshutdown_InitEx,
292 (ndr_pull_flags_fn_t) ndr_pull_initshutdown_InitEx,
293 (ndr_print_function_t) ndr_print_initshutdown_InitEx,
294 false,
295 },
296 { NULL, 0, NULL, NULL, NULL, false }
297 };
298
299 static const char * const initshutdown_endpoint_strings[] = {
300 "ncacn_np:[\\pipe\\InitShutdown]",
301 };
302
303 static const struct ndr_interface_string_array initshutdown_endpoints = {
304 .count = 1,
305 .names = initshutdown_endpoint_strings
306 };
307
308 static const char * const initshutdown_authservice_strings[] = {
309 "host",
310 };
311
312 static const struct ndr_interface_string_array initshutdown_authservices = {
313 .count = 1,
314 .names = initshutdown_authservice_strings
315 };
316
317
318 const struct ndr_interface_table ndr_table_initshutdown = {
319 .name = "initshutdown",
320 .syntax_id = {
321 {0x894de0c0,0x0d55,0x11d3,{0xa3,0x22},{0x00,0xc0,0x4f,0xa3,0x21,0xa1}},
322 NDR_INITSHUTDOWN_VERSION
323 },
324 .helpstring = NDR_INITSHUTDOWN_HELPSTRING,
325 .num_calls = 3,
326 .calls = initshutdown_calls,
327 .endpoints = &initshutdown_endpoints,
328 .authservices = &initshutdown_authservices
329 };
330