diff options
author | Volker Lendecke <vl@samba.org> | 2009-07-28 15:06:11 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-05 03:21:19 -0400 |
commit | 6cf3db91499ebd245b08997a319edf36cfee3365 (patch) | |
tree | a7355f3e0b25e2a13964b7500c77980e94cf2373 /source3/librpc/idl | |
parent | ddd13c6816e7d289406948fe2f68db1aba7669d3 (diff) | |
download | samba-6cf3db91499ebd245b08997a319edf36cfee3365.tar.gz samba-6cf3db91499ebd245b08997a319edf36cfee3365.tar.bz2 samba-6cf3db91499ebd245b08997a319edf36cfee3365.zip |
s3:winbind: Add NDR-based parent-child communication to winbind
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/wbint.idl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/librpc/idl/wbint.idl b/source3/librpc/idl/wbint.idl new file mode 100644 index 0000000000..40a4545a3a --- /dev/null +++ b/source3/librpc/idl/wbint.idl @@ -0,0 +1,14 @@ +[ + uuid("bf09192c-ed60-4928-9dff-d0d7bcb03ed8"), + endpoint("ncalrpc:"), + pointer_default(unique), + version(1.0), + helpstring("winbind parent-child protocol") +] +interface wbint +{ + void wbint_Ping( + [in] uint32 in_data, + [out] uint32 *out_data + ); +}
\ No newline at end of file |