diff options
author | Jeremy Allison <jra@samba.org> | 2002-09-04 19:13:06 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-09-04 19:13:06 +0000 |
commit | a1aafce4dc69b4bc4967ce9b70550ee3ecfab43b (patch) | |
tree | cb9d0440971ec41211f7de1dc095b90469961d97 /source3/include/messages.h | |
parent | 65029365ba9e2df821a57173c7532e4cbc7b06e9 (diff) | |
download | samba-a1aafce4dc69b4bc4967ce9b70550ee3ecfab43b.tar.gz samba-a1aafce4dc69b4bc4967ce9b70550ee3ecfab43b.tar.bz2 samba-a1aafce4dc69b4bc4967ce9b70550ee3ecfab43b.zip |
Add bcast_msg_flags to connection struct. Allows sender to filter when
sending broadcast messages. Also initial cut-down of printing notify
messages (not yet finished).
Jeremy.
(This used to be commit aca333719695b278843c59e1c6eb07d6655fd59c)
Diffstat (limited to 'source3/include/messages.h')
-rw-r--r-- | source3/include/messages.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/messages.h b/source3/include/messages.h index 58e606b40f..0e995039ff 100644 --- a/source3/include/messages.h +++ b/source3/include/messages.h @@ -59,4 +59,12 @@ #define MSG_SMB_SAM_SYNC 3003 #define MSG_SMB_SAM_REPL 3004 +/* Flags to classify messages - used in message_send_all() */ +/* Sender will filter by flag. */ + +#define FLAG_MSG_GENERAL 0x0001 +#define FLAG_MSG_SMBD 0x0002 +#define FLAG_MSG_NMBD 0x0004 +#define FLAG_MSG_PRINTING 0x0008 + #endif |