diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-09-08 11:26:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:37:51 -0500 |
commit | a8ec371a61d5786f40ebb29f3e79b3ec45c3ffbe (patch) | |
tree | 2b8a8bfcd176631bc0c7e8ce778baa51a4d8b71b /source4/include | |
parent | a302b79a37cd2c9f80f2470f09f7d430f084641f (diff) | |
download | samba-a8ec371a61d5786f40ebb29f3e79b3ec45c3ffbe.tar.gz samba-a8ec371a61d5786f40ebb29f3e79b3ec45c3ffbe.tar.bz2 samba-a8ec371a61d5786f40ebb29f3e79b3ec45c3ffbe.zip |
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)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 |