diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-02 15:34:29 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-28 10:38:51 +0200 |
commit | 5cd8a42720b09c50109052b4fea253b2653525d5 (patch) | |
tree | c10f96caf3ff0570634cd5edf9e486309a13e2be /source3/include | |
parent | 3353565faf9fa97d701dcb39b412ed08799ac741 (diff) | |
download | samba-5cd8a42720b09c50109052b4fea253b2653525d5.tar.gz samba-5cd8a42720b09c50109052b4fea253b2653525d5.tar.bz2 samba-5cd8a42720b09c50109052b4fea253b2653525d5.zip |
Factor out create_outbuf, creating an outbuf just given an inbuf
(This used to be commit 50427cbf6345d3f671e9ea321089c4b4244df972)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 81cf2dbf4f..783688e486 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -10066,6 +10066,8 @@ struct idle_event *event_add_idle(struct event_context *event_ctx, void *private_data); NTSTATUS allow_new_trans(struct trans_state *list, int mid); void respond_to_all_remaining_local_messages(void); +bool create_outbuf(TALLOC_CTX *mem_ctx, const char *inbuf, char **outbuf, + uint8_t num_words, uint32_t num_bytes); void reply_outbuf(struct smb_request *req, uint8 num_words, uint32 num_bytes); const char *smb_fn_name(int type); void add_to_common_flags2(uint32 v); |