From b7094c0b804984de8e0b50c17e7908a2685df557 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 22 Jan 2009 18:52:15 +0100 Subject: Abstract away the transport in cli_pipe.c Sorry for the monster checkin, I could not really find a way to do this in steps. --- source3/include/client.h | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'source3/include/client.h') diff --git a/source3/include/client.h b/source3/include/client.h index c47f058318..d62d1c05d2 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -114,18 +114,7 @@ struct rpc_cli_transport { struct rpc_pipe_client { struct rpc_pipe_client *prev, *next; - enum dcerpc_transport_t transport_type; - - union { - struct { - struct cli_state *cli; - const char *pipe_name; - uint16 fnum; - } np; - struct { - int fd; - } sock; - } trans ; + struct rpc_cli_transport *transport; struct ndr_syntax_id abstract_syntax; struct ndr_syntax_id transfer_syntax; -- cgit