summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2007-05-30 21:43:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:22:58 -0500
commite6e577b845db9530aa95d696d9f4f7d31a2b4140 (patch)
tree7c800ad2dc64a981edce045b58de61c3b50fafde /source3
parent9b78af1f64015ae63948de565754ad8f6af66cbe (diff)
downloadsamba-e6e577b845db9530aa95d696d9f4f7d31a2b4140.tar.gz
samba-e6e577b845db9530aa95d696d9f4f7d31a2b4140.tar.bz2
samba-e6e577b845db9530aa95d696d9f4f7d31a2b4140.zip
r23248: Merge echo pipe implementation chanegs from SAMBA_3_0_26
just to stay in sink. This was more or less just for me to play with. (This used to be commit 6c4b85cce0f947771fd9aa93451c53adb1795e3f)
Diffstat (limited to 'source3')
-rw-r--r--source3/rpc_server/srv_echo_nt.c37
1 files changed, 28 insertions, 9 deletions
diff --git a/source3/rpc_server/srv_echo_nt.c b/source3/rpc_server/srv_echo_nt.c
index 58ab51e2b0..08d54ceba4 100644
--- a/source3/rpc_server/srv_echo_nt.c
+++ b/source3/rpc_server/srv_echo_nt.c
@@ -1,8 +1,9 @@
/*
* Unix SMB/CIFS implementation.
* RPC Pipe client / server routines for rpcecho
- * Copyright (C) Tim Potter 2003.
- * Copyright (C) Jelmer Vernooij 2006.
+ * Copyright (C) Tim Potter 2003
+ * Copyright (C) Jelmer Vernooij 2006
+ * Copyright (C) Gerald (Jerry) Carter 2007
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -31,9 +32,9 @@
/* Add one to the input and return it */
-void _echo_AddOne(pipes_struct *p, struct echo_AddOne *r)
+void _echo_AddOne(pipes_struct *p, struct echo_AddOne *r )
{
- DEBUG(10, ("_echo_add_one\n"));
+ DEBUG(10, ("_echo_AddOne\n"));
*r->out.out_data = r->in.in_data + 1;
}
@@ -42,18 +43,26 @@ void _echo_AddOne(pipes_struct *p, struct echo_AddOne *r)
void _echo_EchoData(pipes_struct *p, struct echo_EchoData *r)
{
- DEBUG(10, ("_echo_data\n"));
+ DEBUG(10, ("_echo_EchoData\n"));
- memcpy(r->out.out_data, r->in.in_data, r->in.len);
+ if ( r->in.len == 0 ) {
+ r->out.out_data = NULL;
+ return;
+ }
+
+ r->out.out_data = TALLOC(p->mem_ctx, r->in.len);
+ memcpy( r->out.out_data, r->in.in_data, r->in.len );
+ return;
}
/* Sink an array of data */
void _echo_SinkData(pipes_struct *p, struct echo_SinkData *r)
{
- DEBUG(10, ("_sink_data\n"));
+ DEBUG(10, ("_echo_SinkData\n"));
/* My that was some yummy data! */
+ return;
}
/* Source an array of data */
@@ -62,10 +71,20 @@ void _echo_SourceData(pipes_struct *p, struct echo_SourceData *r)
{
uint32 i;
- DEBUG(10, ("_source_data\n"));
+ DEBUG(10, ("_echo_SourceData\n"));
+
+ if ( r->in.len == 0 ) {
+ r->out.data = NULL;
+ return;
+ }
+
+ r->out.data = TALLOC(p->mem_ctx, r->in.len );
- for (i = 0; i < r->in.len; i++)
+ for (i = 0; i < r->in.len; i++ ) {
r->out.data[i] = i & 0xff;
+ }
+
+ return;
}
void _echo_TestCall(pipes_struct *p, struct echo_TestCall *r)