From a8ec371a61d5786f40ebb29f3e79b3ec45c3ffbe Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 8 Sep 2005 11:26:05 +0000 Subject: r10078: - add a 'struct data_blob_list_item' - use this for the send_queue's of the different stream_servers to not redefine the same struct so often, and it maybe will be used in other places too metze (This used to be commit b6694f067ab7aff0ee303dbfe8a6e7fad801e7e9) --- source4/include/smb.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/include') diff --git a/source4/include/smb.h b/source4/include/smb.h index 3c03c7d7f1..fcde3848dc 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -192,6 +192,11 @@ typedef struct datablob { size_t length; } DATA_BLOB; +struct data_blob_list_item { + struct data_blob_list_item *prev,*next; + DATA_BLOB blob; +}; + /* by making struct ldb_val and DATA_BLOB the same, we can simplify a fair bit of code */ #define ldb_val datablob -- cgit