1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-24 10:50:22 +03:00

ntsvcs: use both named-pipe endpoints.

Guenther
This commit is contained in:
Günther Deschner 2008-11-12 09:21:53 +01:00
parent 0bb8665731
commit 1f87fc798d
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@ import "winreg.idl";
[
uuid("8d9f4e40-a03d-11ce-8f69-08003e30051b"),
version(1.0),
endpoint("ncacn_np:[\\pipe\\ntsvcs]","ncacn_np:[\\pipe\\plugplay]"),
helpstring("Plug and Play services")
]
interface ntsvcs

View File

@ -3857,10 +3857,11 @@ static const struct ndr_interface_call ntsvcs_calls[] = {
static const char * const ntsvcs_endpoint_strings[] = {
"ncacn_np:[\\pipe\\ntsvcs]",
"ncacn_np:[\\pipe\\plugplay]",
};
static const struct ndr_interface_string_array ntsvcs_endpoints = {
.count = 1,
.count = 2,
.names = ntsvcs_endpoint_strings
};