diff options
author | Rafal Szczesniak <mimir@samba.org> | 2005-07-26 23:02:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:30:05 -0500 |
commit | 0102f2752f7c429f95048c277cd1793683a2750e (patch) | |
tree | 7547dc6a4586083b6e4a50bea719e5e829b604e1 /source4 | |
parent | a87a62cba98200c87a44864f46b25152a56cb709 (diff) | |
download | samba-0102f2752f7c429f95048c277cd1793683a2750e.tar.gz samba-0102f2752f7c429f95048c277cd1793683a2750e.tar.bz2 samba-0102f2752f7c429f95048c277cd1793683a2750e.zip |
r8788: New monitor messages.
rafal
(This used to be commit 40061d7bd66be702d92c80da2c5f955b640eda22)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/libcli/composite/monitor.h | 2 | ||||
-rw-r--r-- | source4/libnet/userman.h | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/source4/libcli/composite/monitor.h b/source4/libcli/composite/monitor.h index 6173ca9057..dce9dedc92 100644 --- a/source4/libcli/composite/monitor.h +++ b/source4/libcli/composite/monitor.h @@ -31,6 +31,8 @@ #define rpc_open_user (0x00000002) /* userinfo.h */ #define rpc_query_user (0x00000003) /* userinfo.h */ #define rpc_close_user (0x00000004) /* userinfo.h */ +#define rpc_lookup_name (0x00000005) /* userman.h */ +#define rpc_delete_user (0x00000006) /* userman.h */ struct monitor_msg { diff --git a/source4/libnet/userman.h b/source4/libnet/userman.h index 6ad842f51c..3a49ae89ca 100644 --- a/source4/libnet/userman.h +++ b/source4/libnet/userman.h @@ -26,3 +26,9 @@ struct msg_rpc_create_user { uint32_t rid; }; + + +struct msg_rpc_lookup_name { + uint32_t *rid; + uint32_t count; +}; |