mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
caf8c6a76b
void message_register(int msg_type,
void (*fn)(int msg_type, struct process_id pid,
- void *buf, size_t len))
+ void *buf, size_t len,
+ void *private_data),
+ void *private_data)
{
struct dispatch_fns *dfn;
So this adds a (so far unused) private pointer that is passed from
message_register to the message handler. A prerequisite to implement a tiny
samba4-API compatible wrapper around our messaging system. That itself is
necessary for the Samba4 notify system.
Yes, I know, I could import the whole Samba4 messaging system, but I want to
do it step by step and I think getting notify in is more important in this
step.
Volker
(This used to be commit
|
||
---|---|---|
.. | ||
asyncdns.c | ||
nmbd_become_dmb.c | ||
nmbd_become_lmb.c | ||
nmbd_browserdb.c | ||
nmbd_browsesync.c | ||
nmbd_elections.c | ||
nmbd_incomingdgrams.c | ||
nmbd_incomingrequests.c | ||
nmbd_lmhosts.c | ||
nmbd_logonnames.c | ||
nmbd_mynames.c | ||
nmbd_namelistdb.c | ||
nmbd_namequery.c | ||
nmbd_nameregister.c | ||
nmbd_namerelease.c | ||
nmbd_nodestatus.c | ||
nmbd_packets.c | ||
nmbd_processlogon.c | ||
nmbd_responserecordsdb.c | ||
nmbd_sendannounce.c | ||
nmbd_serverlistdb.c | ||
nmbd_subnetdb.c | ||
nmbd_synclists.c | ||
nmbd_winsproxy.c | ||
nmbd_winsserver.c | ||
nmbd_workgroupdb.c | ||
nmbd.c |