2 * Unix SMB/CIFS implementation.
3 * RPC client transport over a socket
4 * Copyright (C) Volker Lendecke 2009
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "../lib/tsocket/tsocket.h"
22 #include "rpc_client/rpc_transport.h"
25 #define DBGC_CLASS DBGC_RPC_CLI
27 NTSTATUS
rpc_transport_sock_init(TALLOC_CTX
*mem_ctx
, int fd
,
28 struct rpc_cli_transport
**presult
)
30 struct rpc_cli_transport
*result
;
31 struct tstream_context
*stream
;
35 set_blocking(fd
, false);
37 ret
= tstream_bsd_existing_socket(mem_ctx
, fd
, &stream
);
39 status
= map_nt_error_from_unix(errno
);
43 status
= rpc_transport_tstream_init(mem_ctx
,
46 if (!NT_STATUS_IS_OK(status
)) {