diff options
author | Günther Deschner <gd@samba.org> | 2009-03-23 11:04:34 +0100 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-07-07 23:45:50 -0400 |
commit | 3d9a12dca7e00e133702ea1d8d31e50eceac9039 (patch) | |
tree | 3cedf06f6707c60982924e07d3718f7154267cce /source3/include | |
parent | f0b918473db75ff389a7d2e3bf4a069b8b30d141 (diff) | |
download | samba-3d9a12dca7e00e133702ea1d8d31e50eceac9039.tar.gz samba-3d9a12dca7e00e133702ea1d8d31e50eceac9039.tar.bz2 samba-3d9a12dca7e00e133702ea1d8d31e50eceac9039.zip |
s3-dcerpc: add dcerpc_push_ncacn_packet().
Guenther
Signed-off-by: Simo Sorce <idra@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index ee6f4469a9..2cbe8b3ccc 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4833,6 +4833,14 @@ struct tevent_req *rpc_api_pipe_req_send(TALLOC_CTX *mem_ctx, prs_struct *req_data); NTSTATUS rpc_api_pipe_req_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, prs_struct *reply_pdu); +NTSTATUS dcerpc_push_ncacn_packet(TALLOC_CTX *mem_ctx, + enum dcerpc_pkt_type ptype, + uint8_t pfc_flags, + uint16_t frag_length, + uint16_t auth_length, + uint32_t call_id, + union dcerpc_payload u, + DATA_BLOB *blob); struct tevent_req *rpc_pipe_bind_send(TALLOC_CTX *mem_ctx, struct event_context *ev, struct rpc_pipe_client *cli, |