From: Michael Adam Date: Thu, 22 May 2008 09:16:57 +0000 (+0200) Subject: rpc_client: make rpc_pipe_open_tcp_port and rpc_pipe_get_tcp_port static. X-Git-Tag: samba-3.3.0pre1~1175 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9971118c23900d81e885a013e738a67df790c90c;p=thirdparty%2Fsamba.git rpc_client: make rpc_pipe_open_tcp_port and rpc_pipe_get_tcp_port static. Slim the interface... Michael --- diff --git a/source/include/proto.h b/source/include/proto.h index 03a7f918c0a..e30bb327a68 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -7061,13 +7061,6 @@ NTSTATUS rpccli_kerberos_bind_data(TALLOC_CTX *mem_ctx, const char *username, const char *password, struct cli_pipe_auth_data **presult); -NTSTATUS rpc_pipe_open_tcp_port(TALLOC_CTX *mem_ctx, const char *host, - uint16_t port, - const struct ndr_syntax_id *abstract_syntax, - struct rpc_pipe_client **presult); -NTSTATUS rpc_pipe_get_tcp_port(const char *host, - const struct ndr_syntax_id *abstract_syntax, - uint16_t *pport); NTSTATUS rpc_pipe_open_tcp(TALLOC_CTX *mem_ctx, const char *host, const struct ndr_syntax_id *abstract_syntax, struct rpc_pipe_client **presult); diff --git a/source/rpc_client/cli_pipe.c b/source/rpc_client/cli_pipe.c index 7a5a62f2d9f..2705fd8e4ee 100644 --- a/source/rpc_client/cli_pipe.c +++ b/source/rpc_client/cli_pipe.c @@ -2513,10 +2513,10 @@ static int rpc_pipe_sock_destructor(struct rpc_pipe_client *p) /** * Create an rpc pipe client struct, connecting to a tcp port. */ -NTSTATUS rpc_pipe_open_tcp_port(TALLOC_CTX *mem_ctx, const char *host, - uint16_t port, - const struct ndr_syntax_id *abstract_syntax, - struct rpc_pipe_client **presult) +static NTSTATUS rpc_pipe_open_tcp_port(TALLOC_CTX *mem_ctx, const char *host, + uint16_t port, + const struct ndr_syntax_id *abstract_syntax, + struct rpc_pipe_client **presult) { struct rpc_pipe_client *result; struct sockaddr_storage addr; @@ -2569,9 +2569,9 @@ NTSTATUS rpc_pipe_open_tcp_port(TALLOC_CTX *mem_ctx, const char *host, * for the ncacn_ip_tcp transport via the endpoint mapper of the * target host. */ -NTSTATUS rpc_pipe_get_tcp_port(const char *host, - const struct ndr_syntax_id *abstract_syntax, - uint16_t *pport) +static NTSTATUS rpc_pipe_get_tcp_port(const char *host, + const struct ndr_syntax_id *abstract_syntax, + uint16_t *pport) { NTSTATUS status; struct rpc_pipe_client *epm_pipe = NULL;