]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
r23248: Merge echo pipe implementation chanegs from SAMBA_3_0_26
authorGerald Carter <jerry@samba.org>
Wed, 30 May 2007 21:43:48 +0000 (21:43 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:22:58 +0000 (12:22 -0500)
just to stay in sink.  This was more or less just for me
to play with.

source/rpc_server/srv_echo_nt.c

index 58ab51e2b006866df17e76aeb6e93dd222f335bd..08d54ceba4fc267e75dda8d1cc04b058cf813044 100644 (file)
@@ -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)