diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-28 05:20:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-28 05:20:11 +0000 |
commit | ba33beec050bdc4bf0452761c481ea41985b831f (patch) | |
tree | 179e98e27411d9c3ca70ab799d73273306b480ed /source4/librpc/rpc/dcerpc.h | |
parent | d419464d87127c9464d1a00976a36774835d196d (diff) | |
download | samba-ba33beec050bdc4bf0452761c481ea41985b831f.tar.gz samba-ba33beec050bdc4bf0452761c481ea41985b831f.tar.bz2 samba-ba33beec050bdc4bf0452761c481ea41985b831f.zip |
* added a bunch of placeholder IDL files
* allow for an interface to list its endpoints in the IDL file, so we
can automatically make the server listen on the right pipes, and
can scan pipes more easily (I don't take advantage of this yet,
just putting the infrastructure in place)
(This used to be commit c8b8480244b4ab6204403dc65e92e4317b410a84)
Diffstat (limited to 'source4/librpc/rpc/dcerpc.h')
-rw-r--r-- | source4/librpc/rpc/dcerpc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index 6f9aa75e8b..7c6ab160f3 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -76,10 +76,16 @@ struct dcerpc_interface_call { void (*ndr_print)(struct ndr_print *, const char *, int, void *); }; +struct dcerpc_endpoint_list { + uint32 count; + const char *names[]; +}; + struct dcerpc_interface_table { const char *name; const char *uuid; uint32 if_version; uint32 num_calls; const struct dcerpc_interface_call *calls; + const struct dcerpc_endpoint_list *endpoints; }; |