librpc/idl/echo.idl new idl end TestBytePipeIn
authorStefan Metzmacher <metze@samba.org>
Fri, 20 Sep 2013 20:27:33 +0000 (22:27 +0200)
committerStefan Metzmacher <metze@samba.org>
Tue, 4 Jun 2019 11:15:20 +0000 (13:15 +0200)
librpc/idl/echo.idl

index 8d687d7a1499741d38b875d1e3a76e8190b2d466..ff60b86afe2bc043744ac6e33712ea445c04b196 100644 (file)
@@ -128,17 +128,20 @@ interface rpcecho
        typedef pipe uint8 echo_BytePipe;
 
        uint32 echo_TestBytePipeIn(
-               [in] uint32 count,
+               [in] uint32 num_chunks,
+               [in] uint32 chunk_size,
                [in,ref] echo_BytePipe *in_pipe
        );
 
        uint32 echo_TestBytePipeOut(
-               [in] uint32 count,
+               [in] uint32 num_chunks,
+               [in] uint32 chunk_size,
                [out,ref] echo_BytePipe *out_pipe
        );
 
        uint32 echo_TestBytePipeInOut(
-               [in] uint32 count,
+               [in] uint32 num_chunks,
+               [in] uint32 chunk_size,
                [in,out,ref] echo_BytePipe *out_pipe
        );
 }