diff options
author | Volker Lendecke <vl@samba.org> | 2012-04-04 14:51:43 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-04-17 10:21:02 +0200 |
commit | 843432d56f9114a4d0d3021a772953dc5a1193dd (patch) | |
tree | 2b180ce533bc337e56e09dee1e2fe8a5c7070f4c /source3/librpc | |
parent | ae691cd9cc5f00a1d4465d233cdd9f5b580b2c39 (diff) | |
download | samba-843432d56f9114a4d0d3021a772953dc5a1193dd.tar.gz samba-843432d56f9114a4d0d3021a772953dc5a1193dd.tar.bz2 samba-843432d56f9114a4d0d3021a772953dc5a1193dd.zip |
s3: New notify implementation
From notify_internal.c:
/*
* The notify database is split up into two databases: One
* relatively static index db and the real notify db with the
* volatile entries.
*/
This change is necessary to make notify scale better in a cluster
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/messaging.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/librpc/idl/messaging.idl b/source3/librpc/idl/messaging.idl index 1c80cc2b30..cda42fcf1e 100644 --- a/source3/librpc/idl/messaging.idl +++ b/source3/librpc/idl/messaging.idl @@ -85,6 +85,9 @@ interface messaging /*Close a specific file given a share entry. */ MSG_SMB_CLOSE_FILE = 0x0313, + /* Trigger a notify cleanup run */ + MSG_SMB_NOTIFY_CLEANUP = 0x0314, + /* winbind messages */ MSG_WINBIND_FINISHED = 0x0401, MSG_WINBIND_FORGET_STATE = 0x0402, |