mirror of
https://github.com/samba-team/samba.git
synced 2025-02-26 21:57:41 +03:00
rpc_server: Remove unused make_server_pipes_struct()
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Samuel Cabrero <scabrero@samba.org>
This commit is contained in:
parent
562e48655c
commit
a21867bc48
@ -38,32 +38,6 @@
|
||||
#undef DBGC_CLASS
|
||||
#define DBGC_CLASS DBGC_RPC_SRV
|
||||
|
||||
/* Creates a pipes_struct and initializes it with the information
|
||||
* sent from the client */
|
||||
int make_server_pipes_struct(TALLOC_CTX *mem_ctx,
|
||||
struct messaging_context *msg_ctx,
|
||||
const char *pipe_name,
|
||||
enum dcerpc_transport_t transport,
|
||||
const struct tsocket_address *remote_address,
|
||||
const struct tsocket_address *local_address,
|
||||
struct pipes_struct **_p,
|
||||
int *perrno)
|
||||
{
|
||||
struct pipes_struct *p;
|
||||
int ret;
|
||||
|
||||
ret = make_base_pipes_struct(mem_ctx, msg_ctx, pipe_name,
|
||||
transport,
|
||||
remote_address, local_address, &p);
|
||||
if (ret) {
|
||||
*perrno = ret;
|
||||
return -1;
|
||||
}
|
||||
|
||||
*_p = p;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Start listening on the appropriate unix socket and setup all is needed to
|
||||
* dispatch requests to the pipes rpc implementation */
|
||||
|
||||
|
@ -65,15 +65,6 @@ NTSTATUS dcerpc_ncacn_conn_init(TALLOC_CTX *mem_ctx,
|
||||
void *termination_data,
|
||||
struct dcerpc_ncacn_conn **out);
|
||||
|
||||
int make_server_pipes_struct(TALLOC_CTX *mem_ctx,
|
||||
struct messaging_context *msg_ctx,
|
||||
const char *pipe_name,
|
||||
enum dcerpc_transport_t transport,
|
||||
const struct tsocket_address *remote_address,
|
||||
const struct tsocket_address *local_address,
|
||||
struct pipes_struct **_p,
|
||||
int *perrno);
|
||||
|
||||
void set_incoming_fault(struct pipes_struct *p);
|
||||
void process_complete_pdu(struct pipes_struct *p, struct ncacn_packet *pkt);
|
||||
NTSTATUS dcesrv_create_ncacn_np_socket(struct dcesrv_endpoint *e, int *out_fd);
|
||||
|
Loading…
x
Reference in New Issue
Block a user