diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-02-18 23:30:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:10:47 -0500 |
commit | ea5ddbcb4d531971ac9f252ed423d0ccecf56769 (patch) | |
tree | 74f098193a2fedd09a658d7dce27d79a3dd725b1 /source4/rpc_server/echo | |
parent | 42d6a4c4f0d87e8e1bdd1e3152e592822bf95337 (diff) | |
download | samba-ea5ddbcb4d531971ac9f252ed423d0ccecf56769.tar.gz samba-ea5ddbcb4d531971ac9f252ed423d0ccecf56769.tar.bz2 samba-ea5ddbcb4d531971ac9f252ed423d0ccecf56769.zip |
r5452: Add implementation + torture test for echo_Surrounding
(This used to be commit 1b71000cc15a06bd4868fbf4ce5415f5866d29a5)
Diffstat (limited to 'source4/rpc_server/echo')
-rw-r--r-- | source4/rpc_server/echo/rpc_echo.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source4/rpc_server/echo/rpc_echo.c b/source4/rpc_server/echo/rpc_echo.c index 28c9958c92..a2d2e552d6 100644 --- a/source4/rpc_server/echo/rpc_echo.c +++ b/source4/rpc_server/echo/rpc_echo.c @@ -137,6 +137,20 @@ static void echo_TestSleep_handler(struct event_context *ev, struct timed_event } } +static NTSTATUS echo_TestSurrounding(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_TestSurrounding *r) +{ + if (!r->in.data) { + r->out.data = NULL; + return NT_STATUS_OK; + } + + r->out.data = talloc(mem_ctx, struct echo_Surrounding); + r->out.data->x = 2 * r->in.data->x; + r->out.data->surrounding = talloc_zero_array(mem_ctx, uint16_t, r->out.data->x); + + return NT_STATUS_OK; +} + static long echo_TestSleep(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_TestSleep *r) { struct echo_TestSleep_private *p; |