diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-04 23:27:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:17 -0500 |
commit | 7588a01cb6d387440d778e3bd77225b287cf48bc (patch) | |
tree | 9b69ed4a4847d6a28ceaa4568ae034f3eba434db /source4/rpc_server | |
parent | 8448dd6ea0c706e0d5ec5d8773939aa188b62904 (diff) | |
download | samba-7588a01cb6d387440d778e3bd77225b287cf48bc.tar.gz samba-7588a01cb6d387440d778e3bd77225b287cf48bc.tar.bz2 samba-7588a01cb6d387440d778e3bd77225b287cf48bc.zip |
r4520: added a enum test function to the echo pipe
(This used to be commit f9e0aa1ab1faac039893db241819907c9c4bb510)
Diffstat (limited to 'source4/rpc_server')
-rw-r--r-- | source4/rpc_server/echo/rpc_echo.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/rpc_server/echo/rpc_echo.c b/source4/rpc_server/echo/rpc_echo.c index f86ae6debf..543bca1073 100644 --- a/source4/rpc_server/echo/rpc_echo.c +++ b/source4/rpc_server/echo/rpc_echo.c @@ -107,6 +107,12 @@ static NTSTATUS echo_TestCall2(struct dcesrv_call_state *dce_call, TALLOC_CTX *m return NT_STATUS_OK; } +static NTSTATUS echo_TestEnum(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_TestEnum *r) +{ + r->out.foo2->e1 = ECHO_ENUM2; + return NT_STATUS_OK; +} + static long echo_TestSleep(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_TestSleep *r) { sleep(r->in.seconds); |