summaryrefslogtreecommitdiff
path: root/source4/librpc
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-09 08:31:36 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-09 08:31:36 +0000
commit2f6adaadbb127549e17b893d678dfe1a91eed812 (patch)
treecc7d036fe55ea632bc56ce093f4384d3c27c2618 /source4/librpc
parent44dfd039630b229ee4ea11b43fc4c3223f8b86ce (diff)
downloadsamba-2f6adaadbb127549e17b893d678dfe1a91eed812.tar.gz
samba-2f6adaadbb127549e17b893d678dfe1a91eed812.tar.bz2
samba-2f6adaadbb127549e17b893d678dfe1a91eed812.zip
i forgot to commit the rpcecho idl file
(This used to be commit 6c50589a9c19bf14afd2ef9a2170561b336f469e)
Diffstat (limited to 'source4/librpc')
-rw-r--r--source4/librpc/idl/echo.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/source4/librpc/idl/echo.idl b/source4/librpc/idl/echo.idl
new file mode 100644
index 0000000000..e366d7931a
--- /dev/null
+++ b/source4/librpc/idl/echo.idl
@@ -0,0 +1,26 @@
+[
+uuid(60a15ec5-4de8-11d7-a637-005056a20182),
+version(1.0)
+]
+interface rpcecho
+{
+ /* Add one to an integer */
+ void echo_AddOne(
+ [in,out,ref] uint32 *v
+ );
+ /* Echo an array of bytes back at the caller */
+ void echo_EchoData(
+ [in] uint32 len,
+ [in,out,ref,size_is(len)] uint8 *data
+ );
+ /* Sink data to the server */
+ void echo_SinkData(
+ [in] uint32 len,
+ [in,ref,size_is(len)] uint8 *data
+ );
+ /* Source data from server */
+ void echo_SourceData(
+ [in] uint32 len,
+ [out,ref,size_is(len)] uint8 *data
+ );
+}